blob: 280094ec04a26a23e93655477173c383990b6f46 [file] [log] [blame]
toidiuea2012b2018-06-10 06:04:331// revisions: rpass1
2
3// Regression test that `infer_outlives_predicates` can be
4// used with incremental without an ICE.
5
toidiuea2012b2018-06-10 06:04:336struct Foo<'a, T> {
7 x: &'a T
8}
9
10fn main() { }