aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ext/array1.C
blob: 808eb534403a5fd0c6bfd53daf382e69f0b59a27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// 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:
  int reinspect (unsigned long diagFlags);
};
int
ccBgaInspection::reinspect (unsigned long diag_flags) 
{
  ct2d_rigid physTdev;		 
  _dev2phys = physTdev; // ERROR - 
}