11 lines
207 B
Rust
11 lines
207 B
Rust
![]() |
// 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
|
||
|
}
|