about summary refs log tree commit diff
path: root/tests/ui/parser/issues/issue-88583-union-as-ident.rs
blob: a18bd0aeee68f81c24ee04255ea9398100ce7bae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//@ check-pass

#![allow(non_camel_case_types)]

struct union;

impl union {
    pub fn new() -> Self {
        union { }
    }
}

fn main() {
    let _u = union::new();
}