2018-08-30 14:18:55 +02:00
|
|
|
// run-pass
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
2018-08-31 15:02:01 +02:00
|
|
|
#![allow(non_camel_case_types)]
|
2015-03-22 13:13:15 -07:00
|
|
|
|
2015-01-02 14:44:21 -08:00
|
|
|
macro_rules! define_vec {
|
2013-11-16 01:34:52 -05:00
|
|
|
() => (
|
|
|
|
mod foo {
|
2014-12-31 17:32:49 +13:00
|
|
|
#[derive(PartialEq)]
|
2013-11-16 01:34:52 -05:00
|
|
|
pub struct bar;
|
|
|
|
}
|
|
|
|
)
|
2015-01-02 14:44:21 -08:00
|
|
|
}
|
2013-11-16 01:34:52 -05:00
|
|
|
|
2016-10-29 22:54:04 +01:00
|
|
|
define_vec![];
|
2013-11-16 01:34:52 -05:00
|
|
|
|
|
|
|
pub fn main() {}
|