Files
rust/tests/ui/rmeta/rmeta.rs

9 lines
194 B
Rust
Raw Normal View History

//@ no-prefer-dynamic
//@ compile-flags: --emit=metadata
2016-11-10 18:29:27 +13:00
// Check that building a metadata crate finds an error.
fn main() {
let _ = Foo; //~ ERROR cannot find value `Foo` in this scope
2016-11-10 18:29:27 +13:00
}