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[E0435]: attempt to use a non-constant value in a constant
--> src/test/compile-fail/E0435.rs:13:23
|
13 | const FOO : u32 = foo; //~ ERROR E0435
| ^^^
To:
error[E0435]: attempt to use a non-constant value in a constant
--> src/test/compile-fail/E0435.rs:13:23
|
13 | const FOO : u32 = foo; //~ ERROR E0435
| ^^^ non-constant used with constant
The text was updated successfully, but these errors were encountered:
From: src/test/compile-fail/E0435.rs
E0435 needs a span_label, updating it from:
To:
The text was updated successfully, but these errors were encountered: