Closed
Description
From: src/test/compile-fail/E560.rs
E0560 needs a span_label, updating it from:
error[E0560]: structure `Simba` has no field named `father`
--> src/test/compile-fail/E560.rs:16:32
|
16 | let s = Simba { mother: 1, father: 0 }; //~ ERROR E0560
| ^^^^^^
To:
error[E0560]: structure `Simba` has no field named `father`
--> src/test/compile-fail/E560.rs:16:32
|
16 | let s = Simba { mother: 1, father: 0 }; //~ ERROR E0560
| ^^^^^^ `Simba` does not have this field