Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
static
/
issue-5216.rs
blob: 4072a57cb10526aaccd0f12937c5328202db6608 [
file
] [
log
] [
blame
] [
edit
]
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
()
{}