Skip to content

Commit

Permalink
Regression test for #56327.
Browse files Browse the repository at this point in the history
  • Loading branch information
pnkfelix committed Mar 27, 2019
1 parent 6d7e5df commit 1f63a52
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/test/ui/dyn-keyword/issue-56327-dyn-trait-in-macro-is-okay.rs
@@ -0,0 +1,25 @@
// compile-pass

// rust-lang/rust#56327: Some occurrences of `dyn` within a macro are
// not instances of identifiers, and thus should *not* be caught by the
// keyword_ident lint.
//
// Otherwise, rustfix replaces the type `Box<dyn Drop>` with
// `Box<r#dyn Drop>`, which is injecting a bug rather than fixing
// anything.

#![deny(rust_2018_compatibility)]

macro_rules! foo {
() => {
fn generated_foo() {
let _x: Box<dyn Drop>;
}
}
}

foo!();

fn main() {
generated_foo();
}

0 comments on commit 1f63a52

Please sign in to comment.