Update concepts branch to revision 131834
[official-gcc.git] / gcc / testsuite / g++.dg / template / new4.C
blobbf6f06100c700d84715fb6fd3caa54ecb0544baa
1 // PR c++/27559
2 // { dg-do compile }
4 struct A
6     template<typename T>
7     static void* operator new(T) {} // { dg-error "first parameter|invalid template" }
8 };