Files
rust/tests/ui/compiletest-self-test/ui-testing-optout.rs
T
2026-01-19 18:54:02 +00:00

95 lines
287 B
Rust

//@ compile-flags: -Z ui-testing=no --diagnostic-width=80
// Line number < 10
type A = B; //~ ERROR
// Line number >=10, <100
type C = D; //~ ERROR
// Line num >=100
type E = F; //~ ERROR
fn main() {}