rust/tests/ui/proc-macro/issue-38586.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
123 B
Rust
Raw Normal View History

//@ aux-build:issue-38586.rs
2017-01-03 02:11:32 +00:00
#[macro_use]
extern crate issue_38586;
#[derive(A)] //~ ERROR `foo`
struct A;
fn main() {}