compile-pass test for #53606

This commit is contained in:
Saleem Jaffer 2019-02-15 14:22:17 +05:30
parent f47ec2ad5b
commit 2c8e7082f1

View File

@ -0,0 +1,8 @@
//compile-pass
#![feature(nll)]
fn main() {
let _: &'static usize = &(loop {}, 1).1;
}