blob: f3fa4fea746509e8e9bfa577b97e4b6addbc720d (
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>;
#[define_opaque(Alias)]
fn f<'a>() -> Alias<'a, ()> {}
//~^ ERROR expected generic type parameter, found `()`
fn main() {}
impl Trait<()> for () {}
|