aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/using-enum-3.C
blob: edc16890cb1aa42004b38c10f87016a22935921f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// PR c++/89511
// { dg-do compile { target c++11 } }

void f ()
{
  enum e { a };
  using e::a; // { dg-error "not a namespace or unscoped enum" }
}

struct S {
  enum E { A };
  using E::A; // { dg-error "type .S. is not a base type for type .S." }
};

namespace N {
  enum E { B };
}

struct T {
  using N::E::B; // { dg-error "using-declaration for non-member at class scope" }
};