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