6 lines
101 B
Rust
6 lines
101 B
Rust
|
// xfail-stage0
|
||
|
// error-pattern:&& cannot be applied to type `int`
|
||
|
|
||
|
fn main() {
|
||
|
auto x = 1 && 2;
|
||
|
}
|