]> git.lizzy.rs Git - rust.git/blob - tests/ui/no-link-unknown-crate.rs
Merge commit '1480cea393d0cee195e59949eabdfbcf1230f7f9' into clippyup
[rust.git] / tests / ui / no-link-unknown-crate.rs
1 #[no_link]
2 extern crate doesnt_exist; //~ ERROR can't find crate
3
4 fn main() {}