2019-07-03 06:30:28 +09:00
|
|
|
// build-pass (FIXME(62277): could be check-pass?)
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2019-06-08 11:36:43 +03:00
|
|
|
#![feature(rustc_attrs)]
|
2014-02-24 19:42:40 -07:00
|
|
|
|
2019-06-08 11:36:43 +03:00
|
|
|
#[rustc_dummy(bar)]
|
2014-02-24 19:42:40 -07:00
|
|
|
mod foo {
|
|
|
|
#![feature(globs)]
|
|
|
|
}
|
|
|
|
|
2019-06-08 11:36:43 +03:00
|
|
|
fn main() {}
|