2015-03-19 22:39:03 +00:00
|
|
|
// aux-build:lint_unused_extern_crate.rs
|
2017-06-15 14:08:18 +00:00
|
|
|
// aux-build:lint_unused_extern_crate2.rs
|
|
|
|
// aux-build:lint_unused_extern_crate3.rs
|
|
|
|
// aux-build:lint_unused_extern_crate4.rs
|
2017-08-13 02:58:17 +00:00
|
|
|
// aux-build:lint_unused_extern_crate5.rs
|
2014-11-10 20:27:56 +00:00
|
|
|
|
2014-10-27 22:37:07 +00:00
|
|
|
#![deny(unused_extern_crates)]
|
|
|
|
#![allow(unused_variables)]
|
2015-02-03 09:11:38 +00:00
|
|
|
#![allow(deprecated)]
|
2014-09-11 17:14:43 +00:00
|
|
|
|
2017-08-13 02:58:17 +00:00
|
|
|
extern crate lint_unused_extern_crate5; //~ ERROR: unused extern crate
|
|
|
|
|
2018-01-12 21:41:25 +00:00
|
|
|
pub extern crate lint_unused_extern_crate4; // no error, it is re-exported
|
2014-09-11 17:14:43 +00:00
|
|
|
|
2017-06-15 14:08:18 +00:00
|
|
|
extern crate lint_unused_extern_crate3; // no error, it is used
|
2014-09-11 17:14:43 +00:00
|
|
|
|
2017-06-15 14:08:18 +00:00
|
|
|
extern crate lint_unused_extern_crate2; // no error, the use marks it as used
|
|
|
|
// even if imported objects aren't used
|
2014-09-11 17:14:43 +00:00
|
|
|
|
2015-03-19 22:39:03 +00:00
|
|
|
extern crate lint_unused_extern_crate as other; // no error, the use * marks it as used
|
2014-09-11 17:14:43 +00:00
|
|
|
|
|
|
|
#[allow(unused_imports)]
|
2017-06-15 14:08:18 +00:00
|
|
|
use lint_unused_extern_crate2::foo as bar;
|
2014-09-11 17:14:43 +00:00
|
|
|
|
2014-11-10 20:27:56 +00:00
|
|
|
use other::*;
|
2014-09-11 17:14:43 +00:00
|
|
|
|
2017-01-14 07:35:54 +00:00
|
|
|
mod foo {
|
2018-08-19 13:30:23 +00:00
|
|
|
// Test that this is unused even though an earlier `extern crate` is used.
|
2017-06-15 14:08:18 +00:00
|
|
|
extern crate lint_unused_extern_crate2; //~ ERROR unused extern crate
|
2017-01-14 07:35:54 +00:00
|
|
|
}
|
|
|
|
|
2014-09-11 17:14:43 +00:00
|
|
|
fn main() {
|
2017-06-15 14:08:18 +00:00
|
|
|
lint_unused_extern_crate3::foo();
|
2023-06-12 08:55:36 +00:00
|
|
|
foo();
|
2014-09-11 17:14:43 +00:00
|
|
|
}
|