mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
8da09aed94
This lint is not triggered if any of the following conditions are met: - The user explicitly annotates the binding with the `()` type. - The binding is from a macro expansion. - The user explicitly wrote `let () = init;` - The user explicitly wrote `let pat = ();`. This is allowed for local lifetimes.
20 lines
451 B
Rust
20 lines
451 B
Rust
// run-pass
|
|
#![allow(unused_parens)]
|
|
#![allow(unit_bindings)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
fn f<T, F>(g: F) -> T where F: FnOnce() -> T { g() }
|
|
|
|
pub fn main() {
|
|
let _x = f( | | { 10 });
|
|
// used to be: cannot determine a type for this expression
|
|
f(| | { });
|
|
// ditto
|
|
f( | | { ()});
|
|
// always worked
|
|
let _: () = f(| | { });
|
|
// empty block with no type info should compile too
|
|
let _ = f(||{});
|
|
let _ = (||{});
|
|
}
|