]> git.lizzy.rs Git - rust.git/blob - src/test/ui/rfc-2093-infer-outlives/dont-infer-static.rs
Auto merge of #106025 - matthiaskrgr:rollup-vz5rqah, r=matthiaskrgr
[rust.git] / src / test / ui / rfc-2093-infer-outlives / dont-infer-static.rs
1 /*
2  * We don't infer `T: 'static` outlives relationships.
3  */
4
5 struct Foo<U> {
6     bar: Bar<U> //~ ERROR the parameter type `U` may not live long enough [E0310]
7 }
8 struct Bar<T: 'static> {
9     x: T,
10 }
11
12 fn main() {}