]> git.lizzy.rs Git - rust.git/blob - src/test/incremental/issue-51409.rs
Merge commit 'd3a2366ee877075c59b38bd8ced55f224fc7ef51' into sync_cg_clif-2022-07-26
[rust.git] / src / test / incremental / issue-51409.rs
1 // revisions: rpass1
2
3 // Regression test that `infer_outlives_predicates` can be
4 // used with incremental without an ICE.
5
6 struct Foo<'a, T> {
7   x: &'a T
8 }
9
10 fn main() { }