]> git.lizzy.rs Git - rust.git/blob - tests/ui/bounds-lifetime.rs
Rollup merge of #107442 - lukas-code:slice-panics, r=cuviper
[rust.git] / tests / 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() {}