blob: c1f667372f5158c74de4bc387584daf46053b341 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// build-pass (FIXME(62277): could be check-pass?)
// pretty-expanded FIXME #23616
#![feature(rustc_attrs)]
#![feature(test)]
mod m {
#[rustc_dummy = "bar"]
extern crate test;
}
fn main() {}
|