mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 23:12:02 +00:00
15 lines
518 B
Rust
15 lines
518 B
Rust
// Test for #78438: ensure underline alignment with many tabs on the left, long line on the right
|
|
|
|
// ignore-tidy-linelength
|
|
// ignore-tidy-tab
|
|
|
|
fn main() {
|
|
let money = 42i32;
|
|
match money {
|
|
v @ 1 | 2 | 3 => panic!("You gave me too little money {}", v), // Long text here: TTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTTT
|
|
//~^ ERROR variable `v` is not bound in all patterns
|
|
//~| ERROR possibly-uninitialized
|
|
v => println!("Enough money {}", v),
|
|
}
|
|
}
|