Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
crashes
/
150960.rs
blob: 2d46eea6798997423328da1aadecf1d7ef3a575b [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #150960
#![
feature
(
min_generic_const_args
)]
struct
Baz
;
impl
Baz
{
#[
type_const
]
const
LEN
:
usize
=
4
;
fn
baz
()
{
let
_
=
[
0
;
const
{
Self
::
LEN
}];
}
}