mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 12:37:37 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
12 lines
171 B
Rust
12 lines
171 B
Rust
//@ build-pass (FIXME(62277): could be check-pass?)
|
|
|
|
#![feature(rustc_attrs)]
|
|
#![feature(test)]
|
|
|
|
mod m {
|
|
#[rustc_dummy = "bar"]
|
|
extern crate test;
|
|
}
|
|
|
|
fn main() {}
|