]> git.proxmox.com Git - rustc.git/blame - src/test/ui/consts/min_const_fn/address_of.rs
New upstream version 1.49.0~beta.4+dfsg1
[rustc.git] / src / test / ui / consts / min_const_fn / address_of.rs
CommitLineData
dfeec247
XL
1#![feature(raw_ref_op)]
2
3const fn mutable_address_of_in_const() {
4 let mut a = 0;
29967ef6 5 let b = &raw mut a; //~ ERROR mutable reference
dfeec247
XL
6}
7
8struct X;
9
10impl X {
11 const fn inherent_mutable_address_of_in_const() {
12 let mut a = 0;
29967ef6 13 let b = &raw mut a; //~ ERROR mutable reference
dfeec247
XL
14 }
15}
16
17fn main() {}