blob: 96de0ffe26e6b4c05a7a4b6a7807a750268a5529 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// from rfc2005 test suite
#![feature(let_else)]
pub fn main() {
let Some(x) = &Some(3) else {
panic!();
};
*x += 1; //~ ERROR: cannot assign to `*x`, which is behind a `&` reference
}
|