Anders Carlsson | 8d7ba40 | 2009-03-28 06:23:46 +0000 | [diff] [blame] | 1 | // RUN: clang-cc -fsyntax-only -verify %s |
2 | |||||
3 | namespace N { }; | ||||
4 | |||||
5 | namespace A = N; | ||||
6 | |||||
7 | int B; // expected-note {{previous definition is here}} | ||||
8 | namespace B = N; // expected-error {{redefinition of 'B' as different kind of symbol}} | ||||
9 | |||||
10 | namespace C { } // expected-note {{previous definition is here}} | ||||
11 | namespace C = N; // expected-error {{redefinition of 'C'}} |