blob: 629e5d45428e3a360f597cdf25696d03067633e8 [file] [log] [blame]
许杰友 Jieyou Xu (Joe)ec2cc762024-02-16 20:02:501//@ known-bug: unknown
Michael Gouletf479a7a2023-09-02 22:53:592// see comment on `tests/ui/const-generics/late-bound-vars/simple.rs`
3
4#![feature(generic_const_exprs)]
5#![allow(incomplete_features)]
6
7fn bug<'a>()
8where
9 for<'b> [(); {
10 let x: &'b ();
11 0
12 }]:
13{}
14
15fn main() {}