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
I thought every error was supposed to have a number that one could look up in the error index, run rustc --explain with, etc... but if I run this code with stable rust 1.23.0:
fn testl() {
::std::u128::MAX;
}
I get:
error: use of unstable library feature 'i128' (see issue #35118)
--> src/lib.rs:2:5
|
2 | ::std::u128::MAX;
| ^^^^^^^^^^^^^^^^
Rather than error[E0644] or something.
Feel free to close if this was a deliberate decision.
The text was updated successfully, but these errors were encountered:
I thought every error was supposed to have a number that one could look up in the error index, run
rustc --explain
with, etc... but if I run this code with stable rust 1.23.0:I get:
Rather than
error[E0644]
or something.Feel free to close if this was a deliberate decision.
The text was updated successfully, but these errors were encountered: