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
// A tuple struct that can be compared#[derive(PartialEq,PartialOrd)]structCentimeters(f64);// A tuple struct that can be printd#[derive(Show)]structInches(i32);implInches{fnto_centimeters(&self) -> Centimeters{let&Inches(inches) = self;Centimeters(Inchesasf64*2.54)}}
Running through rust-by-example, I ran this bit:
and got this:
This looks similar to a number of other issues with an ICE, but the stack looks different from the other issues I've seen.
Relevant info:
The text was updated successfully, but these errors were encountered: