os-rust/tests/ui/codemap_tests/huge_multispan_highlight.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

239 lines
628 B
Rust
Raw Normal View History

2024-03-03 19:21:44 +00:00
//@ 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
2024-03-03 19:21:44 +00:00
",
};
2016-08-16 16:52:30 +09:00
}