summaryrefslogtreecommitdiffstats
path: root/tests/ui/type-alias-impl-trait/issue-68368-non-defining-use-2.rs
blob: 9dcdb578568aae1947205de6c70af8d17b4c7a2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Regression test for issue #68368
// Ensures that we don't ICE when emitting an error
// for a non-defining use when lifetimes are involved

#![feature(type_alias_impl_trait)]
trait Trait<T> {}
type Alias<'a, U> = impl Trait<U>;

fn f<'a>() -> Alias<'a, ()> {}
//~^ ERROR non-defining opaque type use
//~| ERROR expected generic type parameter, found `()`

fn main() {}

impl<X> Trait<X> for () {}