blob: 745893082bbaaf8ae9f846b2f815ea48310be02c [file] [log] [blame]
Anders Carlsson8d7ba402009-03-28 06:23:46 +00001// RUN: clang-cc -fsyntax-only -verify %s
2
3namespace N { };
4
5namespace A = N;
6
7int B; // expected-note {{previous definition is here}}
8namespace B = N; // expected-error {{redefinition of 'B' as different kind of symbol}}
9
10namespace C { } // expected-note {{previous definition is here}}
11namespace C = N; // expected-error {{redefinition of 'C'}}