blob: 7c44056e4979e59e6ddccf4c93078bce9a589603 [file] [log] [blame]
Douglas Gregor93afb0d2008-12-12 07:27:10 +00001// RUN: clang -fsyntax-only -verify %s
2
3enum E {
4 Val1,
5 Val2
6};
7
8int& enumerator_type(int);
9float& enumerator_type(E);
10
11void f() {
12 E e = Val1;
13 float& fr = enumerator_type(Val2);
14}