You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
9
+
// except according to those terms.
10
+
11
+
structS1<T>(T)where(T): ?Sized;
12
+
//~^ ERROR `?Trait` bounds are only permitted at the point where a type parameter is declared
13
+
14
+
structS2<T>(T)whereu8: ?Sized;
15
+
//~^ ERROR `?Trait` bounds are only permitted at the point where a type parameter is declared
16
+
17
+
structS3<T>(T)where&'staticT: ?Sized;
18
+
//~^ ERROR `?Trait` bounds are only permitted at the point where a type parameter is declared
19
+
20
+
traitTrait<'a>{}
21
+
22
+
structS4<T>(T)wherefor<'a>T: ?Trait<'a>;
23
+
//~^ ERROR `?Trait` bounds are only permitted at the point where a type parameter is declared
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6
+
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7
+
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8
+
// option. This file may not be copied, modified, or distributed
9
+
// except according to those terms.
10
+
11
+
traitTr: ?Sized{}//~ ERROR `?Trait` is not permitted in supertraits
12
+
//~^ NOTE traits are `?Sized` by default
13
+
14
+
typeA1 = Tr + ?Sized;//~ ERROR `?Trait` is not permitted in trait object types
15
+
typeA2 = for<'a> Tr + ?Sized;//~ ERROR `?Trait` is not permitted in trait object types
0 commit comments