about summary refs log tree commit diff
path: root/tests/ui/consts/const-eval/field-access-after-const-eval-fail-in-ty.rs
blob: 3f1f208459d17affcfe34e7f2a596fca1335ae41 (plain)
1
2
3
4
5
// Regression test for issue #120615.

fn main() {
    [(); loop {}].field; //~ ERROR constant evaluation is taking a long time
}