许杰友 Jieyou Xu (Joe) | ec2cc76 | 2024-02-16 20:02:50 | [diff] [blame] | 1 | //@ known-bug: unknown |
Michael Goulet | f479a7a | 2023-09-02 22:53:59 | [diff] [blame] | 2 | // see comment on `tests/ui/const-generics/late-bound-vars/simple.rs` |
3 | |||||
4 | #![feature(generic_const_exprs)] | ||||
5 | #![allow(incomplete_features)] | ||||
6 | |||||
7 | fn bug<'a>() | ||||
8 | where | ||||
9 | for<'b> [(); { | ||||
10 | let x: &'b (); | ||||
11 | 0 | ||||
12 | }]: | ||||
13 | {} | ||||
14 | |||||
15 | fn main() {} |