mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-27 21:17:15 +00:00
20 lines
205 B
Rust
20 lines
205 B
Rust
//@ check-pass
|
|
//@ aux-build: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;
|
|
}
|