2012-12-11 01:32:48 +00:00
|
|
|
// Copyright 2012 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.
|
|
|
|
|
2014-03-22 01:05:05 +00:00
|
|
|
#![deny(unused_imports)]
|
|
|
|
#![allow(dead_code)]
|
2013-02-05 07:01:02 +00:00
|
|
|
|
2014-08-13 02:25:05 +00:00
|
|
|
use bar::c::cc as cal;
|
2011-11-10 15:31:55 +00:00
|
|
|
|
2014-01-31 20:35:36 +00:00
|
|
|
use std::mem::*; // shouldn't get errors for not using
|
|
|
|
// everything imported
|
2013-02-05 07:01:02 +00:00
|
|
|
|
2013-03-26 20:08:59 +00:00
|
|
|
// Should get errors for both 'Some' and 'None'
|
2014-11-28 16:57:41 +00:00
|
|
|
use std::option::Option::{Some, None}; //~ ERROR unused import
|
|
|
|
//~^ ERROR unused import
|
2013-02-05 07:01:02 +00:00
|
|
|
|
2013-10-14 01:48:47 +00:00
|
|
|
use test::A; //~ ERROR unused import
|
2013-02-05 17:29:45 +00:00
|
|
|
// Be sure that if we just bring some methods into scope that they're also
|
|
|
|
// counted as being used.
|
2013-10-14 01:48:47 +00:00
|
|
|
use test::B;
|
2013-02-05 17:29:45 +00:00
|
|
|
|
2013-03-26 20:08:59 +00:00
|
|
|
// Make sure this import is warned about when at least one of its imported names
|
|
|
|
// is unused
|
2014-04-17 22:59:07 +00:00
|
|
|
use test2::{foo, bar}; //~ ERROR unused import
|
|
|
|
|
|
|
|
mod test2 {
|
|
|
|
pub fn foo() {}
|
|
|
|
pub fn bar() {}
|
|
|
|
}
|
2013-03-26 20:08:59 +00:00
|
|
|
|
2013-10-14 01:48:47 +00:00
|
|
|
mod test {
|
|
|
|
pub trait A { fn a(&self) {} }
|
|
|
|
pub trait B { fn b(&self) {} }
|
|
|
|
pub struct C;
|
|
|
|
impl A for C {}
|
|
|
|
impl B for C {}
|
|
|
|
}
|
|
|
|
|
2011-11-10 15:31:55 +00:00
|
|
|
mod foo {
|
2015-01-08 10:54:35 +00:00
|
|
|
pub struct Point{pub x: isize, pub y: isize}
|
2015-01-08 11:02:42 +00:00
|
|
|
pub struct Square{pub p: Point, pub h: usize, pub w: usize}
|
2011-11-10 15:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2014-05-30 00:45:07 +00:00
|
|
|
pub use std::cmp::PartialEq;
|
2013-02-25 16:37:17 +00:00
|
|
|
|
2013-01-30 22:30:22 +00:00
|
|
|
pub mod c {
|
2013-02-05 07:01:02 +00:00
|
|
|
use foo::Point;
|
|
|
|
use foo::Square; //~ ERROR unused import
|
2015-01-31 16:23:42 +00:00
|
|
|
pub fn cc(p: Point) -> isize { return 2 * (p.x + p.y); }
|
2011-11-10 15:31:55 +00:00
|
|
|
}
|
2013-02-25 17:12:22 +00:00
|
|
|
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
mod foo {
|
2014-05-30 00:45:07 +00:00
|
|
|
use std::cmp::PartialEq;
|
2013-02-25 17:12:22 +00:00
|
|
|
}
|
2011-11-10 15:31:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
2013-02-05 07:01:02 +00:00
|
|
|
cal(foo::Point{x:3, y:9});
|
2015-01-31 16:23:42 +00:00
|
|
|
let mut a = 3;
|
|
|
|
let mut b = 4;
|
2014-01-31 20:35:36 +00:00
|
|
|
swap(&mut a, &mut b);
|
2013-10-14 01:48:47 +00:00
|
|
|
test::C.b();
|
2014-04-17 22:59:07 +00:00
|
|
|
let _a = foo();
|
2011-11-10 15:31:55 +00:00
|
|
|
}
|