summaryrefslogtreecommitdiffstats
path: root/test/CXX/dcl.dcl/dcl.spec/dcl.typedef/p4.cpp
blob: 69e843796ff7eeee1126adcc7f26b385ae20745e (plain)
1
2
3
4
5
6
7
8
9
// RUN: clang-cc -verify %s
// XFAIL: *

struct S {
  typedef struct A {} A; // expected-note {{previous definition is here}}
  typedef struct B B;
  typedef A A; // expected-error {{redefinition of 'A'}}
};