]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/lint-unused-imports.rs
Update compile fail tests to use isize.
[rust.git] / src / test / compile-fail / lint-unused-imports.rs
1 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 #![deny(unused_imports)]
12 #![allow(dead_code)]
13
14 use bar::c::cc as cal;
15
16 use std::mem::*;            // shouldn't get errors for not using
17                             // everything imported
18
19 // Should get errors for both 'Some' and 'None'
20 use std::option::Option::{Some, None}; //~ ERROR unused import
21                                      //~^ ERROR unused import
22
23 use test::A;       //~ ERROR unused import
24 // Be sure that if we just bring some methods into scope that they're also
25 // counted as being used.
26 use test::B;
27
28 // Make sure this import is warned about when at least one of its imported names
29 // is unused
30 use test2::{foo, bar}; //~ ERROR unused import
31
32 mod test2 {
33     pub fn foo() {}
34     pub fn bar() {}
35 }
36
37 mod test {
38     pub trait A { fn a(&self) {} }
39     pub trait B { fn b(&self) {} }
40     pub struct C;
41     impl A for C {}
42     impl B for C {}
43 }
44
45 mod foo {
46     pub struct Point{pub x: isize, pub y: isize}
47     pub struct Square{pub p: Point, pub h: uint, pub w: uint}
48 }
49
50 mod bar {
51     // Don't ignore on 'pub use' because we're not sure if it's used or not
52     pub use std::cmp::PartialEq;
53
54     pub mod c {
55         use foo::Point;
56         use foo::Square; //~ ERROR unused import
57         pub fn cc(p: Point) -> isize { return 2i * (p.x + p.y); }
58     }
59
60     #[allow(unused_imports)]
61     mod foo {
62         use std::cmp::PartialEq;
63     }
64 }
65
66 fn main() {
67     cal(foo::Point{x:3, y:9});
68     let mut a = 3i;
69     let mut b = 4i;
70     swap(&mut a, &mut b);
71     test::C.b();
72     let _a = foo();
73 }