about summary refs log tree commit diff
path: root/src/test/ui/macros/macro-expanded-include/test.rs
blob: fe697db9fbed66a4a3a6ae3023d9e60688f971c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// ignore-emscripten no asm! support
// compile-pass
#![feature(asm)]
#![allow(unused)]

#[macro_use]
mod foo;

m!();
fn f() { n!(); }


fn main() {}