blob: 7d7e98f189894fde57770035c683fa4b4492d0a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
class A {
unsigned c;
struct Segment { int begin, end; };
union {
int f;
} named_union;
union {
int d;
};
};
class B {
unsigned d;
struct Segment { int begin, end; };
};
enum class StepSyntax {
Keyword, // step-start and step-end
FunctionalWithoutKeyword, // steps(...)
FunctionalWithStartKeyword, // steps(..., start)
FunctionalWithEndKeyword, // steps(..., end)
};
class C {
unsigned d;
union {
struct {
float mX1;
float mY1;
float mX2;
float mY2;
} mFunc;
struct {
StepSyntax mStepSyntax;
unsigned int mSteps;
};
};
// To ensure it doesn't collide
struct Segment { int begin, end; };
};
|