rust/tests/ui/no-link-unknown-crate.rs

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

5 lines
79 B
Rust
Raw Normal View History

2016-10-18 05:33:50 +00:00
#[no_link]
extern crate doesnt_exist; //~ ERROR can't find crate
2013-12-25 18:10:33 +00:00
fn main() {}