aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/issue-3174.rs
blob: 87588e1ed241c524a0cc9d7ffe3610c787380628 (plain)
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
extern "C" {
    fn printf(s: *const i8, ...);
}

enum Option {
    Some(i32),
    None,
}

impl Option {
    fn add(&mut self) {
        match *self {
            Option::Some(ref mut a) => *a += 1,
            Option::None => {}
        }
    }
}

fn main() {
    unsafe {
        let mut a = Option::None;
        a.add();
        let _s = "%d\n\0";
        let _s = _s as *const str;
        let s = _s as *const i8;
        printf(s, a);
    }
}