* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / enum36.C
blob4859670309f8245f623fe7c4e34b17b39fb4a050
1 // PR c++/82307
2 // { dg-do run { target c++11 } }
4 #include <cassert>
6 enum : short { VAL };
8 bool foo (int) { return true; }
9 bool foo (unsigned long long) { return false; }
11 int main()
13   assert (foo (VAL));