aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/lookup/using29.C
blob: 428021cf778712aabbf740f95035670f9c8e5b73 (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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
// { dg-do compile }

struct A
{
  int i;
};

struct B
{
  int i;
};

struct C : A, B
{
  using A::i; // { dg-message "previous" }
  using B::i; // { dg-error "redeclaration" }
};

struct E
{
  typedef int type;
};

struct F
{
  typedef int type;
};

struct G : E, F
{
  using E::type; // { dg-message "previous" }
  using F::type; // { dg-error "redeclaration" }
};

struct H
{
  typedef int type;
};

struct I : H
{
  typedef int type; // { dg-message "previous" }
  using H::type; // { dg-error "conflicts" }
};

struct I2 : H
{
  using H::type; // { dg-message "previous" }
  typedef int type; // { dg-error "conflicts" }
};

struct J
{
  struct type {};
};

struct K : J
{
  struct type {}; // { dg-message "previous" }
  using J::type; // { dg-error "conflicts" }
};

struct L : J
{
  using J::type; // { dg-message "previous" }
  struct type {}; // { dg-error "conflicts" }
};

struct M
{
  typedef int type;
  struct type2 {};
};

struct N : M
{
  using M::type; // { dg-message "previous" }
  using M::type; // { dg-error "redeclaration" }
  using M::type2; // { dg-message "previous" }
  using M::type2; // { dg-error "redeclaration" }
};