blob: a6cb6b592d6393a9d86d09df913077169fa04812 (
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-message "previous declaration" }
}
typedef enum N::A B; // { dg-error "enum|invalid type" }
|