diff options
Diffstat (limited to 'gcc_arm/testsuite/g++.old-deja/g++.other/array2.C')
-rwxr-xr-x | gcc_arm/testsuite/g++.old-deja/g++.other/array2.C | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/gcc_arm/testsuite/g++.old-deja/g++.other/array2.C b/gcc_arm/testsuite/g++.old-deja/g++.other/array2.C deleted file mode 100755 index 255d8cc..0000000 --- a/gcc_arm/testsuite/g++.old-deja/g++.other/array2.C +++ /dev/null @@ -1,18 +0,0 @@ -int i; - -struct S { - S () { - ++i; - }; - - S (int) { - }; -}; - -int main() -{ - S s[3][3] = { 2 }; - - if (i != 8) - return 1; -} |