summary refs log tree commit diff
path: root/tests/ui/impl-trait/precise-capturing/bad-lifetimes.rs
blob: d2d4570c570eb02e1e874d323c048cfdabeffd79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#![feature(precise_capturing)]

fn no_elided_lt() -> impl Sized + use<'_> {}
//~^ ERROR missing lifetime specifier
//~| ERROR expected lifetime parameter in `use<...>` precise captures list, found `'_`

fn static_lt() -> impl Sized + use<'static> {}
//~^ ERROR expected lifetime parameter in `use<...>` precise captures list, found `'static`

fn missing_lt() -> impl Sized + use<'missing> {}
//~^ ERROR use of undeclared lifetime name `'missing`

fn main() {}