Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-88583-union-as-ident.rs
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
();
}