- 
                Notifications
    You must be signed in to change notification settings 
- Fork 13.9k
Closed
Labels
A-diagnosticsArea: Messages for errors, warnings, and lintsArea: Messages for errors, warnings, and lints
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
Metadata
Metadata
Assignees
Labels
A-diagnosticsArea: Messages for errors, warnings, and lintsArea: Messages for errors, warnings, and lints