about summary refs log tree commit diff
path: root/tests/ui/proc-macro/issue-38586.rs
blob: c9623fd383b1ad4f3a6ff872c47c4ae3ce51ea0d (plain)
1
2
3
4
5
6
7
8
9
10
//@ proc-macro: issue-38586.rs
//@ ignore-backends: gcc

#[macro_use]
extern crate issue_38586;

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

fn main() {}