]> git.lizzy.rs Git - rust.git/blob - src/test/ui/ui-testing-optout.rs
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / ui-testing-optout.rs
1 // disable-ui-testing-normalization
2
3 // Line number < 10
4 type A = B; //~ ERROR
5
6 // Copyright 2018 The Rust Project Developers. See the COPYRIGHT
7 // file at the top-level directory of this distribution and at
8 // http://rust-lang.org/COPYRIGHT.
9 //
10 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
11 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
12 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
13 // option. This file may not be copied, modified, or distributed
14 // except according to those terms.
15
16 // Line number >=10, <100
17 type C = D; //~ ERROR
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101 // Line num >=100
102 type E = F; //~ ERROR
103
104 fn main() {}