mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
326 B
Rust
15 lines
326 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`
|
|
}
|