blob: 28c595cca64250b63c107b0834ea1f8dfe833e0e [file] [log] [blame] [edit]
//@ compile-flags: --error-format=human --color=always
//@ ignore-windows
fn main() {
let _ = match true {
true => (
// last line shown in multispan header
),
false => "
",
};
let _ = match true {
true => (
1 // last line shown in multispan header
),
false => "
1 last line shown in multispan
",
};
}