* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / udlit-namespace-using-directive.C
blobbd1f2066eade478a9bd89f48100dece489b979ca
1 // { dg-do compile { target c++11 } }
3 int operator""_t(long long unsigned) {
4     return 0;
7 namespace foo {
8   int operator""_t(long long unsigned) {
9     return 0;
10   }
13 int main() {
14   using foo::operator""_t;
15   10_t;