blob: b3d66d46b1d4b9342b5e2c05ce4c19875adec92e [file] [log] [blame]
// check-pass
#![allow(non_camel_case_types)]
struct union;
impl union {
pub fn new() -> Self {
union { }
}
}
fn main() {
let _u = union::new();
}