Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
clang
/
eb67c0b4f2943641b5059c7dc3cc65a409be3a80
/
.
/
test
/
SemaCXX
/
enum.cpp
blob: 7c44056e4979e59e6ddccf4c93078bce9a589603 [
file
] [
log
] [
blame
]
// RUN: clang -fsyntax-only -verify %s
enum
E
{
Val1
,
Val2
};
int
&
enumerator_type
(
int
);
float
&
enumerator_type
(
E
);
void
f
()
{
E e
=
Val1
;
float
&
fr
=
enumerator_type
(
Val2
);
}