mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
344 B
Rust
15 lines
344 B
Rust
// build-fail
|
|
// aux-build:rmeta-meta.rs
|
|
// no-prefer-dynamic
|
|
// error-pattern: crate `rmeta_meta` required to be available in rlib format, but was not found
|
|
|
|
// Check that building a non-metadata crate fails if a dependent crate is
|
|
// metadata-only.
|
|
|
|
extern crate rmeta_meta;
|
|
use rmeta_meta::Foo;
|
|
|
|
fn main() {
|
|
let _ = Foo { field: 42 };
|
|
}
|