14 lines
157 B
Rust
14 lines
157 B
Rust
//@ needs-asm-support
|
|
//@ build-pass (FIXME(62277): could be check-pass?)
|
|
#![allow(unused)]
|
|
|
|
#[macro_use]
|
|
mod foo;
|
|
|
|
m!();
|
|
fn f() {
|
|
n!();
|
|
}
|
|
|
|
fn main() {}
|