rust-clippy/tests/ui/no_effect.rs

142 lines
2.5 KiB
Rust
Raw Normal View History

#![feature(box_syntax, fn_traits, unboxed_closures)]
#![warn(clippy::no_effect_underscore_binding)]
#![allow(dead_code, path_statements)]
#![allow(clippy::deref_addrof, clippy::redundant_field_names, clippy::uninlined_format_args)]
2015-10-28 16:50:00 +00:00
struct Unit;
struct Tuple(i32);
struct Struct {
2018-12-09 22:26:16 +00:00
field: i32,
2015-10-28 16:50:00 +00:00
}
enum Enum {
2016-02-01 11:51:33 +00:00
Tuple(i32),
Struct { field: i32 },
2015-10-28 16:50:00 +00:00
}
struct DropUnit;
impl Drop for DropUnit {
fn drop(&mut self) {}
}
struct DropStruct {
2018-12-09 22:26:16 +00:00
field: i32,
}
impl Drop for DropStruct {
fn drop(&mut self) {}
}
struct DropTuple(i32);
impl Drop for DropTuple {
fn drop(&mut self) {}
}
enum DropEnum {
Tuple(i32),
Struct { field: i32 },
}
impl Drop for DropEnum {
fn drop(&mut self) {}
}
struct FooString {
s: String,
}
2016-08-28 17:43:55 +00:00
union Union {
a: u8,
b: f64,
}
2018-12-09 22:26:16 +00:00
fn get_number() -> i32 {
0
}
fn get_struct() -> Struct {
Struct { field: 0 }
}
fn get_drop_struct() -> DropStruct {
DropStruct { field: 0 }
}
2015-10-28 16:50:00 +00:00
2018-12-09 22:26:16 +00:00
unsafe fn unsafe_fn() -> i32 {
0
}
2016-05-25 16:51:35 +00:00
struct GreetStruct1;
impl FnOnce<(&str,)> for GreetStruct1 {
type Output = ();
extern "rust-call" fn call_once(self, (who,): (&str,)) -> Self::Output {
println!("hello {}", who);
}
}
struct GreetStruct2();
impl FnOnce<(&str,)> for GreetStruct2 {
type Output = ();
extern "rust-call" fn call_once(self, (who,): (&str,)) -> Self::Output {
println!("hello {}", who);
}
}
struct GreetStruct3;
impl FnOnce<(&str,)> for GreetStruct3 {
type Output = ();
extern "rust-call" fn call_once(self, (who,): (&str,)) -> Self::Output {
println!("hello {}", who);
}
}
2015-10-28 16:50:00 +00:00
fn main() {
let s = get_struct();
2016-02-11 12:50:41 +00:00
let s2 = get_struct();
2015-10-28 16:50:00 +00:00
2017-02-08 13:58:07 +00:00
0;
s2;
Unit;
Tuple(0);
Struct { field: 0 };
Struct { ..s };
Union { a: 0 };
Enum::Tuple(0);
Enum::Struct { field: 0 };
5 + 6;
*&42;
&6;
(5, 6, 7);
box 42;
..;
5..;
..5;
5..6;
2017-09-28 17:40:19 +00:00
5..=6;
2017-02-08 13:58:07 +00:00
[42, 55];
[42, 55][1];
(42, 55).1;
[42; 55];
[42; 55][13];
2016-02-11 12:50:41 +00:00
let mut x = 0;
2017-02-08 13:58:07 +00:00
|| x += 5;
let s: String = "foo".into();
FooString { s: s };
let _unused = 1;
let _penguin = || println!("Some helpful closure");
let _duck = Struct { field: 0 };
let _cat = [2, 4, 6, 8][2];
2015-10-28 16:50:00 +00:00
#[allow(clippy::no_effect)]
0;
2015-10-28 16:50:00 +00:00
// Do not warn
get_number();
2016-05-25 16:51:35 +00:00
unsafe { unsafe_fn() };
let _used = get_struct();
let _x = vec![1];
DropUnit;
DropStruct { field: 0 };
DropTuple(0);
DropEnum::Tuple(0);
DropEnum::Struct { field: 0 };
GreetStruct1("world");
GreetStruct2()("world");
GreetStruct3 {}("world");
2015-10-28 16:50:00 +00:00
}