]> git.lizzy.rs Git - rust.git/blob - src/test/ui/bounds-lifetime.rs
Add 'src/tools/rust-analyzer/' from commit '977e12a0bdc3e329af179ef3a9d466af9eb613bb'
[rust.git] / src / test / ui / bounds-lifetime.rs
1 type A = for<'b, 'a: 'b> fn(); //~ ERROR lifetime bounds cannot be used in this context
2 type B = for<'b, 'a: 'b,> fn(); //~ ERROR lifetime bounds cannot be used in this context
3 type C = for<'b, 'a: 'b +> fn(); //~ ERROR lifetime bounds cannot be used in this context
4 type D = for<'a, T> fn(); //~ ERROR only lifetime parameters can be used in this context
5 type E = dyn for<T> Fn(); //~ ERROR only lifetime parameters can be used in this context
6
7 fn main() {}