Sign in
fuchsia
/
third_party
/
rust
/
0ba9db87e61adcfd9a978188f61c20d9b423a099
/
.
/
tests
/
crashes
/
106473.rs
blob: b0a129cac010a66d3a4e82a60dca8216164a8274 [
file
] [
log
] [
blame
]
//@ known-bug: #106473
#![
feature
(
generic_const_exprs
)]
const
DEFAULT
:
u32
=
1
;
struct
V
<
const
U
:
usize
=
DEFAULT
>
where
[();
U
]:;
trait
Tr
{}
impl
Tr
for
V
{}