rust/tests/ui/compiletest-self-test/ui-testing-optout.rs

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

95 lines
264 B
Rust
Raw Normal View History

2019-12-29 21:23:19 +00:00
// compile-flags: -Z ui-testing=no
// Line number < 10
type A = B; //~ ERROR
// Line number >=10, <100
type C = D; //~ ERROR
// Line num >=100
type E = F; //~ ERROR
fn main() {}