summary refs log tree commit diff
path: root/src/test/ui/union/union-inherent-method.rs
blob: 2e75cce7b108be3955582b0aeb98b4c51b0811ac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-pass

union U {
    a: u8,
}

impl U {
    fn method(&self) -> u8 { unsafe { self.a } }
}

fn main() {
    let u = U { a: 10 };
    assert_eq!(u.method(), 10);
}