2014-09-11 12:14:43 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2015-03-19 17:39:03 -05:00
|
|
|
// aux-build:lint_unused_extern_crate.rs
|
2017-06-15 09:08:18 -05:00
|
|
|
// aux-build:lint_unused_extern_crate2.rs
|
|
|
|
// aux-build:lint_unused_extern_crate3.rs
|
|
|
|
// aux-build:lint_unused_extern_crate4.rs
|
2017-08-12 21:58:17 -05:00
|
|
|
// aux-build:lint_unused_extern_crate5.rs
|
2014-11-10 14:27:56 -06:00
|
|
|
|
2014-10-27 17:37:07 -05:00
|
|
|
#![deny(unused_extern_crates)]
|
|
|
|
#![allow(unused_variables)]
|
2015-02-03 03:11:38 -06:00
|
|
|
#![allow(deprecated)]
|
2014-09-11 12:14:43 -05:00
|
|
|
|
2017-08-12 21:58:17 -05:00
|
|
|
extern crate lint_unused_extern_crate5; //~ ERROR: unused extern crate
|
|
|
|
|
2018-01-12 15:41:25 -06:00
|
|
|
pub extern crate lint_unused_extern_crate4; // no error, it is re-exported
|
2014-09-11 12:14:43 -05:00
|
|
|
|
2017-06-15 09:08:18 -05:00
|
|
|
extern crate lint_unused_extern_crate3; // no error, it is used
|
2014-09-11 12:14:43 -05:00
|
|
|
|
2017-06-15 09:08:18 -05: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 12:14:43 -05:00
|
|
|
|
2015-03-19 17:39:03 -05:00
|
|
|
extern crate lint_unused_extern_crate as other; // no error, the use * marks it as used
|
2014-09-11 12:14:43 -05:00
|
|
|
|
|
|
|
#[allow(unused_imports)]
|
2017-06-15 09:08:18 -05:00
|
|
|
use lint_unused_extern_crate2::foo as bar;
|
2014-09-11 12:14:43 -05:00
|
|
|
|
2014-11-10 14:27:56 -06:00
|
|
|
use other::*;
|
2014-09-11 12:14:43 -05:00
|
|
|
|
2017-01-14 01:35:54 -06:00
|
|
|
mod foo {
|
2017-06-15 09:08:18 -05:00
|
|
|
// Test that this is unused even though an earler `extern crate` is used.
|
|
|
|
extern crate lint_unused_extern_crate2; //~ ERROR unused extern crate
|
2017-01-14 01:35:54 -06:00
|
|
|
}
|
|
|
|
|
2014-09-11 12:14:43 -05:00
|
|
|
fn main() {
|
2017-06-15 09:08:18 -05:00
|
|
|
lint_unused_extern_crate3::foo();
|
2014-11-10 14:27:56 -06:00
|
|
|
let y = foo();
|
2014-09-11 12:14:43 -05:00
|
|
|
}
|