summary refs log tree commit diff
path: root/src/test/ui/issues/issue-5216.stderr
blob: 5afea5873d568574146409f87a26812f0873532f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0308]: mismatched types
  --> $DIR/issue-5216.rs:3:21
   |
LL | pub static C: S = S(f); //~ ERROR mismatched types
   |                     ^ expected struct `std::boxed::Box`, found fn item
   |
   = note: expected type `std::boxed::Box<(dyn std::ops::FnMut() + 'static)>`
              found type `fn() {f}`

error[E0308]: mismatched types
  --> $DIR/issue-5216.rs:8:19
   |
LL | pub static D: T = g; //~ ERROR mismatched types
   |                   ^ expected struct `std::boxed::Box`, found fn item
   |
   = note: expected type `std::boxed::Box<(dyn std::ops::FnMut() + 'static)>`
              found type `fn() {g}`

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0308`.