blob: e24d6a7f9287b56353f3583cdb9c0e2feb6f707b [file] [log] [blame]
// DR 2392
// { dg-do compile { target c++11 } }
template <class T = void>
constexpr int
foo ()
{
T t;
return 1;
}
using V = decltype (new int[foo ()]);