blob: dcb2dce5b09fdda3a0c7eee13728b8a0f796abda (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// { dg-do assemble }
// GROUPS passed old-abort
class abc
{
public:
void F() { return; }
private:
typedef int myint;
typedef struct { int b; } mystruct;
typedef union { int c; } myunion;
};
|