blob: ada87524352026b7c88d69db833bea8a2136e84e [file] [log] [blame]
// PR c++/14550
struct A {
A();
};
template <int> void foo()
{
A *p = new A;
}
void bar()
{
foo<0>();
}