From: Marek Polacek Date: Wed, 9 Oct 2019 20:38:13 +0000 (+0000) Subject: Fix typo in test name. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=3b29211acb2b463a664875bf55cec0242e95d2ea;p=gcc.git Fix typo in test name. From-SVN: r276770 --- diff --git a/gcc/testsuite/g++.dg/cpp0x/initlist-array1.C b/gcc/testsuite/g++.dg/cpp0x/initlist-array1.C new file mode 100644 index 00000000000..925ab16bead --- /dev/null +++ b/gcc/testsuite/g++.dg/cpp0x/initlist-array1.C @@ -0,0 +1,5 @@ +// { dg-do compile { target c++11 } } + +typedef int IRT[2]; + +const IRT& ir = IRT{1,2}; diff --git a/gcc/testsuite/g++.dg/cpp0x/initlist-arrray1.C b/gcc/testsuite/g++.dg/cpp0x/initlist-arrray1.C deleted file mode 100644 index 925ab16bead..00000000000 --- a/gcc/testsuite/g++.dg/cpp0x/initlist-arrray1.C +++ /dev/null @@ -1,5 +0,0 @@ -// { dg-do compile { target c++11 } } - -typedef int IRT[2]; - -const IRT& ir = IRT{1,2};