rust/tests/ui/errors/issue-104621-extern-not-file.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

5 lines
117 B
Rust
Raw Normal View History

//@ compile-flags: --extern foo=.
extern crate foo; //~ ERROR extern location for foo is not a file: .
fn main() {}