Sign in
◑
Theme
rust
/
rust
/
refs/heads/main
/
.
/
tests
/
crashes
/
150749.rs
blob: 59d07f9860b9a12e794a254470ee871fb4fbd4cd [
file
] [
edit
]
//@ known-bug: #150749
#![
feature
(
min_generic_const_args
)]
trait
CollectArray
{
fn
inner_array
();
}
impl
CollectArray
for
()
{
fn
inner_array
()
{
let
temp_ptr
:
[();
core
::
direct_const_arg
!(
Self
)];
}
}
fn
main
()
{}