rust/tests/ui/lint/unused/lint-unused-imports.rs

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

91 lines
2.1 KiB
Rust
Raw Normal View History

#![deny(unused_imports)]
#![allow(dead_code)]
use bar::c::cc as cal;
use std::mem::*; // shouldn't get errors for not using
// everything imported
use std::fmt::{};
2018-12-09 16:40:49 +00:00
//~^ ERROR unused import: `std::fmt::{}`
// Should get errors for both 'Some' and 'None'
use std::option::Option::{Some, None};
//~^ ERROR unused imports: `None`, `Some`
use test::A; //~ ERROR unused import: `test::A`
// Be sure that if we just bring some methods into scope that they're also
// counted as being used.
use test::B;
2016-04-19 13:43:10 +00:00
// But only when actually used: do not get confused by the method with the same name.
use test::B2; //~ ERROR unused import: `test::B2`
// Make sure this import is warned about when at least one of its imported names
// is unused
use test2::{foo, bar}; //~ ERROR unused import: `bar`
mod test2 {
pub fn foo() {}
pub fn bar() {}
}
mod test {
pub trait A { fn a(&self) {} }
pub trait B { fn b(&self) {} }
2016-04-19 13:43:10 +00:00
pub trait B2 { fn b(&self) {} }
pub struct C;
impl A for C {}
impl B for C {}
}
mod foo {
pub struct Point{pub x: isize, pub y: isize}
pub struct Square{pub p: Point, pub h: usize, pub w: usize}
}
mod bar {
2013-02-25 16:37:17 +00:00
// Don't ignore on 'pub use' because we're not sure if it's used or not
pub use std::cmp::PartialEq;
pub struct Square;
2013-02-25 16:37:17 +00:00
pub mod c {
use foo::Point;
use foo::Square; //~ ERROR unused import: `foo::Square`
pub fn cc(_p: Point) -> super::Square {
2016-01-31 04:25:49 +00:00
fn f() -> super::Square {
super::Square
}
f()
}
}
#[allow(unused_imports)]
mod foo {
use std::cmp::PartialEq;
}
}
2016-02-24 08:46:25 +00:00
fn g() {
use self::g; //~ ERROR unused import: `self::g`
2019-03-17 10:38:38 +00:00
//~^ ERROR the item `g` is imported redundantly
2016-02-24 08:46:25 +00:00
fn f() {
self::g();
}
}
// cf. issue #35135.
#[allow(unused_variables)]
fn h() {
use test2::foo; //~ ERROR unused import: `test2::foo`
2019-03-17 10:38:38 +00:00
//~^ ERROR the item `foo` is imported redundantly
let foo = 0;
}
fn main() {
cal(foo::Point{x:3, y:9});
2015-01-31 16:23:42 +00:00
let mut a = 3;
let mut b = 4;
swap(&mut a, &mut b);
test::C.b();
foo();
}