mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-27 18:56:24 +00:00
27 lines
327 B
Rust
27 lines
327 B
Rust
// Issue #117720
|
|
//@ edition: 2024
|
|
|
|
fn main() {
|
|
if let () = ()
|
|
&& let () = (); //~ERROR
|
|
&& let () = ()
|
|
{
|
|
}
|
|
}
|
|
|
|
fn foo() {
|
|
if let () = ()
|
|
&& () == (); //~ERROR
|
|
&& 1 < 0
|
|
{
|
|
}
|
|
}
|
|
|
|
fn bar() {
|
|
if let () = ()
|
|
&& () == (); //~ERROR
|
|
&& let () = ()
|
|
{
|
|
}
|
|
}
|