2018-07-28 17:34:52 +02:00
|
|
|
#![feature(tool_lints)]
|
2017-09-18 12:47:33 +02:00
|
|
|
|
|
|
|
|
2018-07-28 17:34:52 +02:00
|
|
|
#![warn(clippy::duplicate_underscore_argument)]
|
2016-01-03 14:00:42 +01:00
|
|
|
#[allow(dead_code, unused)]
|
|
|
|
|
2017-02-08 14:58:07 +01:00
|
|
|
fn join_the_dark_side(darth: i32, _darth: i32) {}
|
2016-01-03 14:00:42 +01:00
|
|
|
fn join_the_light_side(knight: i32, _master: i32) {} // the Force is strong with this one
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
join_the_dark_side(0, 0);
|
|
|
|
join_the_light_side(0, 0);
|
2017-02-08 14:58:07 +01:00
|
|
|
}
|