]> git.lizzy.rs Git - rust.git/blob - src/test/compile-fail/lint-dead-code-3.rs
ci: Start running wasm32 tests on Travis
[rust.git] / src / test / compile-fail / lint-dead-code-3.rs
1 // Copyright 2013 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 #![allow(unused_variables)]
12 #![allow(non_camel_case_types)]
13 #![deny(dead_code)]
14
15 #![crate_type="lib"]
16
17
18 pub use extern_foo as x;
19 extern {
20     pub fn extern_foo();
21 }
22
23 struct Foo; //~ ERROR: struct is never used
24 impl Foo {
25     fn foo(&self) { //~ ERROR: method is never used
26         bar()
27     }
28 }
29
30 fn bar() { //~ ERROR: function is never used
31     fn baz() {}
32
33     Foo.foo();
34     baz();
35 }
36
37 // no warning
38 struct Foo2;
39 impl Foo2 { fn foo2(&self) { bar2() } }
40 fn bar2() {
41     fn baz2() {}
42
43     Foo2.foo2();
44     baz2();
45 }
46
47 pub fn pub_fn() {
48     let foo2_struct = Foo2;
49     foo2_struct.foo2();
50
51     blah::baz();
52 }
53
54 mod blah {
55     // not warned because it's used in the parameter of `free` and return of
56     // `malloc` below, which are also used.
57     enum c_void {}
58
59     extern {
60         fn free(p: *const c_void);
61         fn malloc(size: usize) -> *const c_void;
62     }
63
64     pub fn baz() {
65         unsafe { free(malloc(4)); }
66     }
67 }
68
69 enum c_void {} //~ ERROR: enum is never used
70 extern {
71     fn free(p: *const c_void); //~ ERROR: foreign function is never used
72 }
73
74 // Check provided method
75 mod inner {
76     pub trait Trait {
77         fn f(&self) { f(); }
78     }
79
80     impl Trait for isize {}
81
82     fn f() {}
83 }
84
85 pub fn foo() {
86     let a: &inner::Trait = &1_isize;
87     a.f();
88 }