summary refs log tree commit diff
path: root/src/test/ui/issues/issue-5216.stderr
blob: 21d9333735cc755f62110b35b3e050dd07a23376 (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);
   |                     ^ expected struct `std::boxed::Box`, found fn item
   |
   = note: expected struct `std::boxed::Box<(dyn std::ops::FnMut() + 'static)>`
             found fn item `fn() {f}`

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

error: aborting due to 2 previous errors

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