summary refs log tree commit diff
path: root/src/test/ui/proc-macro/issue-38586.rs
blob: 4f291ba990ab781481d3f824020d6b8654096131 (plain)
1
2
3
4
5
6
7
8
9
// aux-build:issue_38586.rs

#[macro_use]
extern crate issue_38586;

#[derive(A)] //~ ERROR `foo`
struct A;

fn main() {}