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
struct Foo { x: int }
fn main() {
let _ = Foo { x: 0, ..fail };
}
Compiling this results in an ICE:
bugs/record-update-ice.rs:4:24: 4:28 error: internal compiler error: bad base expr type in record
bugs/record-update-ice.rs:4 let _ = Foo { x: 0, ..fail };
^~~~