]> git.lizzy.rs Git - rust.git/blob - src/test/ui/type-alias-impl-trait/bounds-are-checked-2.rs
Auto merge of #95454 - randomicon00:fix95444, r=wesleywiser
[rust.git] / src / test / ui / type-alias-impl-trait / bounds-are-checked-2.rs
1 // Make sure that we check that impl trait types implement the traits that they
2 // claim to.
3
4 #![feature(type_alias_impl_trait)]
5
6 type X<T> = impl Clone;
7 //~^ ERROR the trait bound `T: Clone` is not satisfied
8
9 fn f<T: Clone>(t: T) -> X<T> {
10     t
11 }
12
13 fn g<T>(o: Option<X<T>>) -> Option<X<T>> {
14     o.clone()
15 }
16
17 fn main() {
18     g(None::<X<&mut ()>>);
19 }