15 lines
329 B
Rust
15 lines
329 B
Rust
//@ compile-flags: --emit=metadata
|
|
//@ aux-build:rmeta-meta.rs
|
|
//@ no-prefer-dynamic
|
|
|
|
// Check that building a metadata crate finds an error with a dependent,
|
|
// metadata-only crate.
|
|
|
|
|
|
extern crate rmeta_meta;
|
|
use rmeta_meta::Foo;
|
|
|
|
fn main() {
|
|
let _ = Foo { field2: 42 }; //~ ERROR struct `Foo` has no field named `field2`
|
|
}
|