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)]
|
|
|
|
#![feature(test)]
|
2015-02-14 16:15:43 +05:30
|
|
|
|
2011-07-27 14:48:34 +02:00
|
|
|
mod m {
|
2019-06-08 11:36:43 +03:00
|
|
|
#[rustc_dummy = "bar"]
|
2014-03-14 11:16:10 -07:00
|
|
|
extern crate test;
|
2011-07-27 14:48:34 +02:00
|
|
|
}
|
|
|
|
|
2019-06-08 11:36:43 +03:00
|
|
|
fn main() {}
|