Sign in
rust
/
rust
/
refs/heads/perf-tmp
/
.
/
tests
/
crashes
/
149809.rs
blob: 2b948e9079c3cbab92813e4b84091eb679b3057d [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #149809
#![
feature
(
min_generic_const_args
)]
#![
feature
(
inherent_associated_types
)]
struct
Qux
<
'
a
>
{
x
:
&
'
a
(),
}
impl
<
'a> Qux<'
a
>
{
#[
type_const
]
const
LEN
:
usize
=
4
;
fn
foo
(
_
:
[
u8
;
Qux
::
LEN
])
{}
}
fn
main
()
{}