]> oss.titaniummirror.com Git - msp430-gcc.git/blobdiff - gcc/testsuite/g++.old-deja/g++.ext/array1.C
Imported gcc-4.4.3
[msp430-gcc.git] / gcc / testsuite / g++.old-deja / g++.ext / array1.C
diff --git a/gcc/testsuite/g++.old-deja/g++.ext/array1.C b/gcc/testsuite/g++.old-deja/g++.ext/array1.C
deleted file mode 100644 (file)
index 095d05a..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-// Testcase for assignment of non-array to array (assigns the same value to
-// each member)
-// Build don't link:
-// Special Options: 
-
-typedef struct {} ct2d_rigid, ct2d_rigid_a[1];
-class ccInspection
-{
-protected:
-  ct2d_rigid_a _dev2phys;       
-};
-class ccBgaInspection : public ccInspection
-{
-public:
-  void reinspect (unsigned long diagFlags);
-};
-void
-ccBgaInspection::reinspect (unsigned long diag_flags) 
-{
-  ct2d_rigid physTdev;          
-  _dev2phys = physTdev; // ERROR - 
-}