2019-11-04 00:00:00 +00:00
|
|
|
//@ check-pass
|
2018-09-25 23:51:35 +02:00
|
|
|
#![allow(dead_code)]
|
2015-03-22 13:13:15 -07:00
|
|
|
//@ pretty-expanded FIXME #23616
|
2018-08-31 15:02:01 +02:00
|
|
|
#![allow(non_snake_case)]
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2015-01-02 14:44:21 -08:00
|
|
|
macro_rules! silly_macro {
|
2013-09-11 22:17:57 -07:00
|
|
|
() => (
|
|
|
|
pub mod Qux {
|
|
|
|
pub struct Foo { x : u8 }
|
|
|
|
pub fn bar(_foo : Foo) {}
|
|
|
|
}
|
|
|
|
);
|
2015-01-02 14:44:21 -08:00
|
|
|
}
|
2013-09-11 22:17:57 -07:00
|
|
|
|
2014-11-14 09:18:10 -08:00
|
|
|
silly_macro!();
|
2013-09-11 22:17:57 -07:00
|
|
|
|
2013-09-25 00:43:37 -07:00
|
|
|
pub fn main() {}
|