mirror of
https://github.com/Gericom/teak-llvm.git
synced 2025-06-22 04:55:50 -04:00

worked for C anyway. Also kills the -cc1 options -parse-noop and -parse-print-callbacks. llvm-svn: 109392
10 lines
306 B
C++
10 lines
306 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
namespace A = B; // expected-error{{namespace name}}
|
|
|
|
namespace A = !; // expected-error {{expected namespace name}}
|
|
namespace A = A::!; // expected-error {{expected namespace name}} \
|
|
// expected-error{{use of undeclared identifier 'A'}}
|
|
|
|
|