* g++.dg/cpp0x/initlist-new2.C: Clarify comment.

From-SVN: r279239
This commit is contained in:
Jason Merrill 2019-12-11 11:55:02 -05:00
parent 7ae0172800
commit cc3b6728a2

View file

@ -11,5 +11,5 @@ int main()
{
new X; // OK
new X(); // OK
new X{}; // ERROR
new X{}; // { dg-bogus "" }
}