Skip to content

Commit e41d7e7

Browse files
authored
Rollup merge of #123182 - jhpratt:fix-decodable-derive, r=davidtwco
Avoid expanding to unstable internal method Fixes #123156 Rather than expanding to `std::rt::begin_panic`, the expansion is now to `unreachable!()`. The resulting behavior is identical. A test that previously triggered the same error as #123156 has been added to ensure it does not regress. r? compiler
2 parents e9ef8e1 + 0fcdf34 commit e41d7e7

File tree

4 files changed

+69
-8
lines changed

4 files changed

+69
-8
lines changed

compiler/rustc_expand/src/build.rs

+32-8
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,23 @@ impl<'a> ExtCtxt<'a> {
4848
ast::Path { span, segments, tokens: None }
4949
}
5050

51+
pub fn macro_call(
52+
&self,
53+
span: Span,
54+
path: ast::Path,
55+
delim: ast::token::Delimiter,
56+
tokens: ast::tokenstream::TokenStream,
57+
) -> P<ast::MacCall> {
58+
P(ast::MacCall {
59+
path,
60+
args: P(ast::DelimArgs {
61+
dspan: ast::tokenstream::DelimSpan { open: span, close: span },
62+
delim,
63+
tokens,
64+
}),
65+
})
66+
}
67+
5168
pub fn ty_mt(&self, ty: P<ast::Ty>, mutbl: ast::Mutability) -> ast::MutTy {
5269
ast::MutTy { ty, mutbl }
5370
}
@@ -265,6 +282,10 @@ impl<'a> ExtCtxt<'a> {
265282
self.expr(span, ast::ExprKind::Field(expr, field))
266283
}
267284

285+
pub fn expr_macro_call(&self, span: Span, call: P<ast::MacCall>) -> P<ast::Expr> {
286+
self.expr(span, ast::ExprKind::MacCall(call))
287+
}
288+
268289
pub fn expr_binary(
269290
&self,
270291
sp: Span,
@@ -410,18 +431,21 @@ impl<'a> ExtCtxt<'a> {
410431
self.expr(sp, ast::ExprKind::Tup(exprs))
411432
}
412433

413-
pub fn expr_fail(&self, span: Span, msg: Symbol) -> P<ast::Expr> {
414-
self.expr_call_global(
434+
pub fn expr_unreachable(&self, span: Span) -> P<ast::Expr> {
435+
self.expr_macro_call(
415436
span,
416-
[sym::std, sym::rt, sym::begin_panic].iter().map(|s| Ident::new(*s, span)).collect(),
417-
thin_vec![self.expr_str(span, msg)],
437+
self.macro_call(
438+
span,
439+
self.path_global(
440+
span,
441+
[sym::std, sym::unreachable].map(|s| Ident::new(s, span)).to_vec(),
442+
),
443+
ast::token::Delimiter::Parenthesis,
444+
ast::tokenstream::TokenStream::default(),
445+
),
418446
)
419447
}
420448

421-
pub fn expr_unreachable(&self, span: Span) -> P<ast::Expr> {
422-
self.expr_fail(span, Symbol::intern("internal error: entered unreachable code"))
423-
}
424-
425449
pub fn expr_ok(&self, sp: Span, expr: P<ast::Expr>) -> P<ast::Expr> {
426450
let ok = self.std_path(&[sym::result, sym::Result, sym::Ok]);
427451
self.expr_call_global(sp, ok, thin_vec![expr])
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
#![crate_type = "lib"]
2+
3+
pub trait Decoder {
4+
type Error;
5+
6+
fn read_enum<T, F>(&mut self, name: &str, f: F) -> Result<T, Self::Error>
7+
where F: FnOnce(&mut Self) -> Result<T, Self::Error>;
8+
fn read_enum_variant<T, F>(&mut self, names: &[&str], f: F)
9+
-> Result<T, Self::Error>
10+
where F: FnMut(&mut Self, usize) -> Result<T, Self::Error>;
11+
12+
}
13+
14+
pub trait Decodable: Sized {
15+
fn decode<D: Decoder>(d: &mut D) -> Result<Self, D::Error>;
16+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
//@ check-pass
2+
//@ edition:2021
3+
//@ aux-build:rustc-serialize.rs
4+
5+
#![crate_type = "lib"]
6+
#![allow(deprecated, soft_unstable)]
7+
8+
extern crate rustc_serialize;
9+
10+
#[derive(RustcDecodable)]
11+
pub enum Foo {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
Future incompatibility report: Future breakage diagnostic:
2+
warning: use of unstable library feature 'rustc_encodable_decodable': derive macro for `rustc-serialize`; should not be used in new code
3+
--> $DIR/rustc-decodable-issue-123156.rs:10:10
4+
|
5+
LL | #[derive(RustcDecodable)]
6+
| ^^^^^^^^^^^^^^
7+
|
8+
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
9+
= note: for more information, see issue #64266 <https://github.com/rust-lang/rust/issues/64266>
10+

0 commit comments

Comments
 (0)