blob: ade21753b457c8084d47cec2e909122630a7700b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// 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
v => println!("Enough money {}", v),
}
}
|