* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr78890-1.C
blob6fccc4fbe0df69fdd58bbe602c1ed99b3681da8d
1 // PR c++/78890
2 // { dg-do compile { target c++11 } }
4 int
5 main()
7   union {
8     int a;
9     int &b = a;         // { dg-error "may not have reference type" }
10   };
11   a = 1;
12   auto c = b + 1;