rust/tests/ui/attributes/attr-before-view-item2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
202 B
Rust
Raw Normal View History

// build-pass (FIXME(62277): could be check-pass?)
// pretty-expanded FIXME #23616
#![feature(rustc_attrs)]
#![feature(test)]
2011-07-27 12:48:34 +00:00
mod m {
#[rustc_dummy = "bar"]
extern crate test;
2011-07-27 12:48:34 +00:00
}
fn main() {}