aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/struct-as-enum1.C
blob: f58c738819593fc27e4abeefeca36f25e637d62c (plain)
1
2
3
4
5
6
7
8
9
10
// PR c++/163, PR c++/8595
// Origin: <martin@loewis.home.cs.tu-berlin.de>, Mark Leone <mleone@pixar.com>
// { dg-do compile }

namespace N
{
    struct A {};	// { dg-error "previous declaration" }
}

typedef enum N::A B;	// { dg-error "enum|invalid type" }