You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
…rner
Updated E0560 to new error format
Added a small bit of code to add a label for E0560.
Also renamed src/test/compile-fail/E560.rs file to E0560.rs (not sure why it was named E560).
Updated all test cases which check this error.
Closesrust-lang#36199
sophiajt
pushed a commit
to sophiajt/rust
that referenced
this issue
Sep 21, 2016
…rner
Updated E0560 to new error format
Added a small bit of code to add a label for E0560.
Also renamed src/test/compile-fail/E560.rs file to E0560.rs (not sure why it was named E560).
Updated all test cases which check this error.
Closesrust-lang#36199
sophiajt
pushed a commit
to sophiajt/rust
that referenced
this issue
Sep 22, 2016
…rner
Updated E0560 to new error format
Added a small bit of code to add a label for E0560.
Also renamed src/test/compile-fail/E560.rs file to E0560.rs (not sure why it was named E560).
Updated all test cases which check this error.
Closesrust-lang#36199
From: src/test/compile-fail/E560.rs
E0560 needs a span_label, updating it from:
To:
The text was updated successfully, but these errors were encountered: