File: qualif-union.rs

package info (click to toggle)
rustc 1.85.0%2Bdfsg3-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental, sid, trixie
  • size: 893,396 kB
  • sloc: xml: 158,127; python: 35,830; javascript: 19,497; cpp: 19,002; sh: 17,245; ansic: 13,127; asm: 4,376; makefile: 1,051; perl: 29; lisp: 29; ruby: 19; sql: 11
file content (33 lines) | stat: -rw-r--r-- 978 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Checks that unions use type based qualification. Regression test for issue #90268.

use std::cell::Cell;
use std::mem::ManuallyDrop;

union U { i: u32, c: ManuallyDrop<Cell<u32>> }

const C1: ManuallyDrop<Cell<u32>> = {
    unsafe { U { c: ManuallyDrop::new(Cell::new(0)) }.c }
};

const C2: ManuallyDrop<Cell<u32>> = {
    unsafe { U { i : 0 }.c }
};

const C3: ManuallyDrop<Cell<u32>> = {
    let mut u = U { i: 0 };
    u.i = 1;
    unsafe { u.c }
};

const C4: U = U { i: 0 };

const C5: [U; 1] = [U {i : 0}; 1];

fn main() {
    // Interior mutability should prevent promotion.
    let _: &'static _ = &C1; //~ ERROR temporary value dropped while borrowed
    let _: &'static _ = &C2; //~ ERROR temporary value dropped while borrowed
    let _: &'static _ = &C3; //~ ERROR temporary value dropped while borrowed
    let _: &'static _ = &C4; //~ ERROR temporary value dropped while borrowed
    let _: &'static _ = &C5; //~ ERROR temporary value dropped while borrowed
}