2018-11-21 10:37:18 +01:00
|
|
|
use std::cell::Cell;
|
|
|
|
|
|
|
|
const FOO: &(Cell<usize>, bool) = {
|
|
|
|
let mut a = (Cell::new(0), false);
|
2018-11-21 11:47:16 +01:00
|
|
|
a.1 = true; // sets `qualif(a)` to `qualif(a) | qualif(true)`
|
2021-01-03 14:46:19 +00:00
|
|
|
&{a} //~ ERROR cannot refer to interior mutable
|
2018-11-21 10:37:18 +01:00
|
|
|
};
|
|
|
|
|
2018-11-21 11:13:49 +01:00
|
|
|
fn main() {}
|