mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
10 lines
232 B
Rust
10 lines
232 B
Rust
use std::cell::Cell;
|
|
|
|
const FOO: &(Cell<usize>, bool) = {
|
|
let mut a = (Cell::new(0), false);
|
|
a.1 = true; // sets `qualif(a)` to `qualif(a) | qualif(true)`
|
|
&{a} //~ ERROR cannot refer to interior mutable
|
|
};
|
|
|
|
fn main() {}
|