rust/tests/ui/const-generics/late-bound-vars/late-bound-in-where-issue-83993.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
255 B
Rust
Raw Normal View History

2023-09-02 17:53:59 -05:00
//@ 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() {}