Sign in
fuchsia
/
third_party
/
rust
/
0ba9db87e61adcfd9a978188f61c20d9b423a099
/
.
/
tests
/
crashes
/
118545.rs
blob: 1d4bb848bf04ed0b6ded20d3d98331f8504e7b0d [
file
] [
log
] [
blame
]
//@ known-bug: #118545
#![
feature
(
generic_const_exprs
)]
struct
Checked
<
const
F
:
fn
()>;
fn
foo
()
{}
const
_
:
Checked
<
foo
>
=
Checked
::<
foo
>;
pub
fn
main
()
{}