Sign in
fuchsia
/
third_party
/
rust
/
4717bdfc1343953b770887460d5822c87e434d97
/
.
/
tests
/
ui
/
static
/
issue-5216.rs
blob: 4072a57cb10526aaccd0f12937c5328202db6608 [
file
] [
log
] [
blame
]
fn
f
()
{
}
struct
S
(
Box
<
dyn
FnMut
()
+
Sync
>);
pub
static
C
:
S
=
S
(
f
);
//~ ERROR mismatched types
fn
g
()
{
}
type
T
=
Box
<
dyn
FnMut
()
+
Sync
>;
pub
static
D
:
T
=
g
;
//~ ERROR mismatched types
fn
main
()
{}