mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-29 02:19:56 +00:00
17 lines
252 B
Rust
17 lines
252 B
Rust
// check-pass
|
|
|
|
// This test checks that the `remove extra angle brackets` error doesn't happen for some
|
|
// potential edge-cases..
|
|
|
|
struct X {
|
|
len: u32,
|
|
}
|
|
|
|
fn main() {
|
|
let x = X { len: 3 };
|
|
|
|
let _ = x.len > (3);
|
|
|
|
let _ = x.len >> (3);
|
|
}
|