rust/src/test/ui/ui-testing-optout.rs
2019-12-30 20:01:34 +03:00

97 lines
303 B
Rust

// compile-flags: -Z ui-testing=no
// Line number < 10
type A = B; //~ ERROR
// http://rust-lang.org/COPYRIGHT.
//
// Line number >=10, <100
type C = D; //~ ERROR
// Line num >=100
type E = F; //~ ERROR
fn main() {}