]> git.lizzy.rs Git - rust.git/blob - src/test/ui/prim-with-args.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / prim-with-args.stderr
1 error[E0109]: type parameters are not allowed on this type
2   --> $DIR/prim-with-args.rs:13:14
3    |
4 LL | let x: isize<isize>; //~ ERROR type parameters are not allowed on this type
5    |              ^^^^^ type parameter not allowed
6
7 error[E0109]: type parameters are not allowed on this type
8   --> $DIR/prim-with-args.rs:14:11
9    |
10 LL | let x: i8<isize>; //~ ERROR type parameters are not allowed on this type
11    |           ^^^^^ type parameter not allowed
12
13 error[E0109]: type parameters are not allowed on this type
14   --> $DIR/prim-with-args.rs:15:12
15    |
16 LL | let x: i16<isize>; //~ ERROR type parameters are not allowed on this type
17    |            ^^^^^ type parameter not allowed
18
19 error[E0109]: type parameters are not allowed on this type
20   --> $DIR/prim-with-args.rs:16:12
21    |
22 LL | let x: i32<isize>; //~ ERROR type parameters are not allowed on this type
23    |            ^^^^^ type parameter not allowed
24
25 error[E0109]: type parameters are not allowed on this type
26   --> $DIR/prim-with-args.rs:17:12
27    |
28 LL | let x: i64<isize>; //~ ERROR type parameters are not allowed on this type
29    |            ^^^^^ type parameter not allowed
30
31 error[E0109]: type parameters are not allowed on this type
32   --> $DIR/prim-with-args.rs:18:14
33    |
34 LL | let x: usize<isize>; //~ ERROR type parameters are not allowed on this type
35    |              ^^^^^ type parameter not allowed
36
37 error[E0109]: type parameters are not allowed on this type
38   --> $DIR/prim-with-args.rs:19:11
39    |
40 LL | let x: u8<isize>; //~ ERROR type parameters are not allowed on this type
41    |           ^^^^^ type parameter not allowed
42
43 error[E0109]: type parameters are not allowed on this type
44   --> $DIR/prim-with-args.rs:20:12
45    |
46 LL | let x: u16<isize>; //~ ERROR type parameters are not allowed on this type
47    |            ^^^^^ type parameter not allowed
48
49 error[E0109]: type parameters are not allowed on this type
50   --> $DIR/prim-with-args.rs:21:12
51    |
52 LL | let x: u32<isize>; //~ ERROR type parameters are not allowed on this type
53    |            ^^^^^ type parameter not allowed
54
55 error[E0109]: type parameters are not allowed on this type
56   --> $DIR/prim-with-args.rs:22:12
57    |
58 LL | let x: u64<isize>; //~ ERROR type parameters are not allowed on this type
59    |            ^^^^^ type parameter not allowed
60
61 error[E0109]: type parameters are not allowed on this type
62   --> $DIR/prim-with-args.rs:23:13
63    |
64 LL | let x: char<isize>; //~ ERROR type parameters are not allowed on this type
65    |             ^^^^^ type parameter not allowed
66
67 error[E0110]: lifetime parameters are not allowed on this type
68   --> $DIR/prim-with-args.rs:25:14
69    |
70 LL | let x: isize<'static>; //~ ERROR lifetime parameters are not allowed on this type
71    |              ^^^^^^^ lifetime parameter not allowed
72
73 error[E0110]: lifetime parameters are not allowed on this type
74   --> $DIR/prim-with-args.rs:26:11
75    |
76 LL | let x: i8<'static>; //~ ERROR lifetime parameters are not allowed on this type
77    |           ^^^^^^^ lifetime parameter not allowed
78
79 error[E0110]: lifetime parameters are not allowed on this type
80   --> $DIR/prim-with-args.rs:27:12
81    |
82 LL | let x: i16<'static>; //~ ERROR lifetime parameters are not allowed on this type
83    |            ^^^^^^^ lifetime parameter not allowed
84
85 error[E0110]: lifetime parameters are not allowed on this type
86   --> $DIR/prim-with-args.rs:28:12
87    |
88 LL | let x: i32<'static>; //~ ERROR lifetime parameters are not allowed on this type
89    |            ^^^^^^^ lifetime parameter not allowed
90
91 error[E0110]: lifetime parameters are not allowed on this type
92   --> $DIR/prim-with-args.rs:29:12
93    |
94 LL | let x: i64<'static>; //~ ERROR lifetime parameters are not allowed on this type
95    |            ^^^^^^^ lifetime parameter not allowed
96
97 error[E0110]: lifetime parameters are not allowed on this type
98   --> $DIR/prim-with-args.rs:30:14
99    |
100 LL | let x: usize<'static>; //~ ERROR lifetime parameters are not allowed on this type
101    |              ^^^^^^^ lifetime parameter not allowed
102
103 error[E0110]: lifetime parameters are not allowed on this type
104   --> $DIR/prim-with-args.rs:31:11
105    |
106 LL | let x: u8<'static>; //~ ERROR lifetime parameters are not allowed on this type
107    |           ^^^^^^^ lifetime parameter not allowed
108
109 error[E0110]: lifetime parameters are not allowed on this type
110   --> $DIR/prim-with-args.rs:32:12
111    |
112 LL | let x: u16<'static>; //~ ERROR lifetime parameters are not allowed on this type
113    |            ^^^^^^^ lifetime parameter not allowed
114
115 error[E0110]: lifetime parameters are not allowed on this type
116   --> $DIR/prim-with-args.rs:33:12
117    |
118 LL | let x: u32<'static>; //~ ERROR lifetime parameters are not allowed on this type
119    |            ^^^^^^^ lifetime parameter not allowed
120
121 error[E0110]: lifetime parameters are not allowed on this type
122   --> $DIR/prim-with-args.rs:34:12
123    |
124 LL | let x: u64<'static>; //~ ERROR lifetime parameters are not allowed on this type
125    |            ^^^^^^^ lifetime parameter not allowed
126
127 error[E0110]: lifetime parameters are not allowed on this type
128   --> $DIR/prim-with-args.rs:35:13
129    |
130 LL | let x: char<'static>; //~ ERROR lifetime parameters are not allowed on this type
131    |             ^^^^^^^ lifetime parameter not allowed
132
133 error: aborting due to 22 previous errors
134
135 Some errors occurred: E0109, E0110.
136 For more information about an error, try `rustc --explain E0109`.