mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 08:18:44 +00:00
10 lines
125 B
Rust
10 lines
125 B
Rust
//@ proc-macro: issue-38586.rs
|
|
|
|
#[macro_use]
|
|
extern crate issue_38586;
|
|
|
|
#[derive(A)] //~ ERROR `foo`
|
|
struct A;
|
|
|
|
fn main() {}
|