Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const-generics
/
late-bound-vars
/
late-bound-in-where-issue-83993.rs
blob: 629e5d45428e3a360f597cdf25696d03067633e8 [
file
] [
log
] [
blame
] [
edit
]
//@ 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
()
{}