diff options
author | Douglas Gregor <dgregor@apple.com> | 2009-03-19 04:25:59 +0000 |
---|---|---|
committer | Douglas Gregor <dgregor@apple.com> | 2009-03-19 04:25:59 +0000 |
commit | 975e6d0ccde80eee8c670d2d649da1e13de99b42 (patch) | |
tree | 8d95d36721cc8b0c2227d45ef66eea014e78834b /clang/test/SemaTemplate/class-template-id-2.cpp | |
parent | 183539102563b85e9421d0fc5c3a650a20887840 (diff) | |
download | bcm5719-llvm-975e6d0ccde80eee8c670d2d649da1e13de99b42.tar.gz bcm5719-llvm-975e6d0ccde80eee8c670d2d649da1e13de99b42.zip |
Print the context of tag types as part of pretty-printing, e.g.,
struct N::M::foo
llvm-svn: 67284
Diffstat (limited to 'clang/test/SemaTemplate/class-template-id-2.cpp')
-rw-r--r-- | clang/test/SemaTemplate/class-template-id-2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaTemplate/class-template-id-2.cpp b/clang/test/SemaTemplate/class-template-id-2.cpp index 5499c50a949..e77555f2f97 100644 --- a/clang/test/SemaTemplate/class-template-id-2.cpp +++ b/clang/test/SemaTemplate/class-template-id-2.cpp @@ -4,7 +4,7 @@ namespace N { template<> class A<int> { }; - template<> class A<float>; // expected-note{{forward declaration of 'class A<float>'}} + template<> class A<float>; // expected-note{{forward declaration of 'class N::A<float>'}} class B : public A<int> { }; } |