blob: c94cf6ea1a5669fe72dd467e43f466c106208f68 (
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
42
43
44
45
46
47
48
|
// PR c++/26256
// { dg-do run }
struct A
{
typedef int type;
};
struct B
{
typedef double type;
};
struct C : A, B
{
using A::type;
type d;
void f()
{
type e;
if (sizeof (type) != sizeof (A::type))
__builtin_abort();
}
void g();
};
void C::g()
{
type x;
if (sizeof (type) != sizeof (A::type))
__builtin_abort();
}
int main ()
{
if (sizeof (C::type) != sizeof (A::type))
__builtin_abort();
if (sizeof (C::d) != sizeof (A::type))
__builtin_abort();
C::type x;
C c;
c.f();
c.g();
}
|