* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ptrcomp1.C
blob2eee1b022e302093773fee5412786fdb2cd1ffdd
1 // PR c++/65509
2 // { dg-do compile { target c++11 } }
4 const int i1 = 1;
5 const int i2 = 2;
7 #define SA(X) static_assert (X,#X)
8 SA(&i1 != &i2);