summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-5216.rs
blob: 4072a57cb10526aaccd0f12937c5328202db6608 (plain)
1
2
3
4
5
6
7
8
9
10
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() {}