rust/src/test/incremental/issue-51409.rs
2018-12-25 21:08:33 -07:00

10 lines
171 B
Rust

// revisions: rpass1
// Regression test that `infer_outlives_predicates` can be
// used with incremental without an ICE.
struct Foo<'a, T> {
x: &'a T
}
fn main() { }