2016-08-27 18:52:01 -05:00
|
|
|
#![feature(plugin)]
|
|
|
|
#![plugin(clippy)]
|
2017-05-17 07:19:44 -05:00
|
|
|
#![warn(builtin_type_shadow)]
|
2016-08-27 18:52:01 -05:00
|
|
|
|
2017-02-08 07:58:07 -06:00
|
|
|
fn foo<u32>(a: u32) -> u32 {
|
|
|
|
42
|
2016-08-27 18:52:01 -05:00
|
|
|
// ^ rustc's type error
|
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
}
|