mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 17:14:50 +00:00
20 lines
207 B
Rust
20 lines
207 B
Rust
//@ check-pass
|
|
//@ proc-macro: test-macros.rs
|
|
|
|
#[macro_use]
|
|
extern crate test_macros;
|
|
|
|
#[identity_attr]
|
|
mod m {
|
|
pub struct S;
|
|
}
|
|
|
|
#[identity_attr]
|
|
fn f() {
|
|
mod m {}
|
|
}
|
|
|
|
fn main() {
|
|
let s = m::S;
|
|
}
|