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
122 B
Rust
Raw Normal View History

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