rust/src/test/ui/lint/lint-dead-code-3.rs

79 lines
1.2 KiB
Rust
Raw Normal View History

2014-10-27 17:37:07 -05:00
#![allow(unused_variables)]
#![allow(non_camel_case_types)]
#![deny(dead_code)]
2013-12-08 01:55:27 -06:00
#![crate_type="lib"]
2013-12-08 01:55:27 -06:00
2014-02-26 11:58:41 -06:00
pub use extern_foo as x;
extern {
2015-03-15 15:00:41 -05:00
pub fn extern_foo();
}
struct Foo; //~ ERROR: struct is never constructed
2013-12-08 01:55:27 -06:00
impl Foo {
fn foo(&self) { //~ ERROR: method is never used
2013-12-08 01:55:27 -06:00
bar()
}
}
fn bar() { //~ ERROR: function is never used
fn baz() {}
2013-12-08 01:55:27 -06:00
Foo.foo();
baz();
}
// no warning
struct Foo2;
impl Foo2 { fn foo2(&self) { bar2() } }
fn bar2() {
fn baz2() {}
Foo2.foo2();
baz2();
}
pub fn pub_fn() {
let foo2_struct = Foo2;
foo2_struct.foo2();
blah::baz();
2013-12-08 01:55:27 -06:00
}
mod blah {
// not warned because it's used in the parameter of `free` and return of
// `malloc` below, which are also used.
enum c_void {}
extern {
2014-06-25 14:47:34 -05:00
fn free(p: *const c_void);
fn malloc(size: usize) -> *const c_void;
}
pub fn baz() {
unsafe { free(malloc(4)); }
}
}
2013-12-08 01:55:27 -06:00
enum c_void {} //~ ERROR: enum is never used
2013-12-08 01:55:27 -06:00
extern {
fn free(p: *const c_void); //~ ERROR: foreign function is never used
2013-12-08 01:55:27 -06:00
}
// Check provided method
mod inner {
pub trait Trait {
fn f(&self) { f(); }
}
impl Trait for isize {}
fn f() {}
}
pub fn foo() {
Add trivial cast lints. This permits all coercions to be performed in casts, but adds lints to warn in those cases. Part of this patch moves cast checking to a later stage of type checking. We acquire obligations to check casts as part of type checking where we previously checked them. Once we have type checked a function or module, then we check any cast obligations which have been acquired. That means we have more type information available to check casts (this was crucial to making coercions work properly in place of some casts), but it means that casts cannot feed input into type inference. [breaking change] * Adds two new lints for trivial casts and trivial numeric casts, these are warn by default, but can cause errors if you build with warnings as errors. Previously, trivial numeric casts and casts to trait objects were allowed. * The unused casts lint has gone. * Interactions between casting and type inference have changed in subtle ways. Two ways this might manifest are: - You may need to 'direct' casts more with extra type information, for example, in some cases where `foo as _ as T` succeeded, you may now need to specify the type for `_` - Casts do not influence inference of integer types. E.g., the following used to type check: ``` let x = 42; let y = &x as *const u32; ``` Because the cast would inform inference that `x` must have type `u32`. This no longer applies and the compiler will fallback to `i32` for `x` and thus there will be a type error in the cast. The solution is to add more type information: ``` let x: u32 = 42; let y = &x as *const u32; ```
2015-03-19 23:15:27 -05:00
let a: &inner::Trait = &1_isize;
a.f();
}