blob: 16d651717ff2c0f935a7e550e6f7f3cc556e7c51 [file] [log] [blame] [edit]
// Regression test for #92105.
// ICE when mutating immutable reference from last statement of a block.
fn main() {
let foo = Some(&0).unwrap();
*foo = 1; //~ ERROR cannot assign
}