summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rmeta/rmeta_lib.rs
blob: fa6826450c9647217f391330c25493097d18168a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// 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 };
}