@@ -9,7 +9,7 @@ help: the clause will not be checked when the type alias is used, and should be
9
9
|
10
10
LL - type _TaWhere1<T> where T: Iterator<Item: Copy> = T;
11
11
LL + type _TaWhere1<T> = T;
12
- |
12
+ |
13
13
14
14
warning: where clauses are not enforced in type aliases
15
15
--> $DIR/type-alias.rs:6:25
@@ -21,7 +21,7 @@ help: the clause will not be checked when the type alias is used, and should be
21
21
|
22
22
LL - type _TaWhere2<T> where T: Iterator<Item: 'static> = T;
23
23
LL + type _TaWhere2<T> = T;
24
- |
24
+ |
25
25
26
26
warning: where clauses are not enforced in type aliases
27
27
--> $DIR/type-alias.rs:7:25
@@ -33,7 +33,7 @@ help: the clause will not be checked when the type alias is used, and should be
33
33
|
34
34
LL - type _TaWhere3<T> where T: Iterator<Item: 'static> = T;
35
35
LL + type _TaWhere3<T> = T;
36
- |
36
+ |
37
37
38
38
warning: where clauses are not enforced in type aliases
39
39
--> $DIR/type-alias.rs:8:25
@@ -45,7 +45,7 @@ help: the clause will not be checked when the type alias is used, and should be
45
45
|
46
46
LL - type _TaWhere4<T> where T: Iterator<Item: 'static + Copy + Send> = T;
47
47
LL + type _TaWhere4<T> = T;
48
- |
48
+ |
49
49
50
50
warning: where clauses are not enforced in type aliases
51
51
--> $DIR/type-alias.rs:9:25
@@ -57,7 +57,7 @@ help: the clause will not be checked when the type alias is used, and should be
57
57
|
58
58
LL - type _TaWhere5<T> where T: Iterator<Item: for<'a> Into<&'a u8>> = T;
59
59
LL + type _TaWhere5<T> = T;
60
- |
60
+ |
61
61
62
62
warning: where clauses are not enforced in type aliases
63
63
--> $DIR/type-alias.rs:10:25
@@ -69,7 +69,7 @@ help: the clause will not be checked when the type alias is used, and should be
69
69
|
70
70
LL - type _TaWhere6<T> where T: Iterator<Item: Iterator<Item: Copy>> = T;
71
71
LL + type _TaWhere6<T> = T;
72
- |
72
+ |
73
73
74
74
warning: bounds on generic parameters are not enforced in type aliases
75
75
--> $DIR/type-alias.rs:12:20
@@ -81,7 +81,7 @@ help: the bound will not be checked when the type alias is used, and should be r
81
81
|
82
82
LL - type _TaInline1<T: Iterator<Item: Copy>> = T;
83
83
LL + type _TaInline1<T> = T;
84
- |
84
+ |
85
85
86
86
warning: bounds on generic parameters are not enforced in type aliases
87
87
--> $DIR/type-alias.rs:13:20
@@ -93,7 +93,7 @@ help: the bound will not be checked when the type alias is used, and should be r
93
93
|
94
94
LL - type _TaInline2<T: Iterator<Item: 'static>> = T;
95
95
LL + type _TaInline2<T> = T;
96
- |
96
+ |
97
97
98
98
warning: bounds on generic parameters are not enforced in type aliases
99
99
--> $DIR/type-alias.rs:14:20
@@ -105,7 +105,7 @@ help: the bound will not be checked when the type alias is used, and should be r
105
105
|
106
106
LL - type _TaInline3<T: Iterator<Item: 'static>> = T;
107
107
LL + type _TaInline3<T> = T;
108
- |
108
+ |
109
109
110
110
warning: bounds on generic parameters are not enforced in type aliases
111
111
--> $DIR/type-alias.rs:15:20
@@ -117,7 +117,7 @@ help: the bound will not be checked when the type alias is used, and should be r
117
117
|
118
118
LL - type _TaInline4<T: Iterator<Item: 'static + Copy + Send>> = T;
119
119
LL + type _TaInline4<T> = T;
120
- |
120
+ |
121
121
122
122
warning: bounds on generic parameters are not enforced in type aliases
123
123
--> $DIR/type-alias.rs:16:20
@@ -129,7 +129,7 @@ help: the bound will not be checked when the type alias is used, and should be r
129
129
|
130
130
LL - type _TaInline5<T: Iterator<Item: for<'a> Into<&'a u8>>> = T;
131
131
LL + type _TaInline5<T> = T;
132
- |
132
+ |
133
133
134
134
warning: bounds on generic parameters are not enforced in type aliases
135
135
--> $DIR/type-alias.rs:17:20
@@ -141,7 +141,7 @@ help: the bound will not be checked when the type alias is used, and should be r
141
141
|
142
142
LL - type _TaInline6<T: Iterator<Item: Iterator<Item: Copy>>> = T;
143
143
LL + type _TaInline6<T> = T;
144
- |
144
+ |
145
145
146
146
warning: 12 warnings emitted
147
147
0 commit comments