repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
g++.dg
/
lookup
/
anon1.C
blob
e4db50d946cb6312aa867a057be88114b3171540
1
// PR c++/2039
2
// Test that a scoped reference to a member of an anonymous union member of
3
// a base class works properly.
4
5
// { dg-do run }
6
7
struct A
8
{
9
long ia1;
10
union
11
{
12
long ia2;
13
};
14
};
15
16
struct B : public A
17
{
18
void f1();
19
void f2();
20
};
21
22
void B::f1()
23
{
24
ia1 = 11;
25
ia2 = 22;
26
}
27
28
void B::f2()
29
{
30
ia1 = 33;
31
A::ia2 = 44; // <<< !!!????
32
}
33
34
int main()
35
{
36
B x;
37
38
x.f1();
39
if (x.ia1 != 11 || x.ia2 != 22)
40
return 1;
41
42
x.f2();
43
if (x.ia1 != 33 || x.ia2 != 44)
44
return 1;
45
46
return 0;
47
}