mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-04 03:15:52 +00:00
16 lines
254 B
Rust
16 lines
254 B
Rust
// known-bug: unknown
|
|
// see comment on `tests/ui/const-generics/late-bound-vars/simple.rs`
|
|
|
|
#![feature(generic_const_exprs)]
|
|
#![allow(incomplete_features)]
|
|
|
|
fn bug<'a>()
|
|
where
|
|
for<'b> [(); {
|
|
let x: &'b ();
|
|
0
|
|
}]:
|
|
{}
|
|
|
|
fn main() {}
|