diff options
Diffstat (limited to 'clang/test/SemaCXX/using-decl-templates.cpp')
-rw-r--r-- | clang/test/SemaCXX/using-decl-templates.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/SemaCXX/using-decl-templates.cpp b/clang/test/SemaCXX/using-decl-templates.cpp index 8314688bcbc..d766bb3ac6b 100644 --- a/clang/test/SemaCXX/using-decl-templates.cpp +++ b/clang/test/SemaCXX/using-decl-templates.cpp @@ -90,5 +90,5 @@ namespace aliastemplateinst { template<typename T> struct A { }; template<typename T> using APtr = A<T*>; // expected-note{{previous use is here}} - template struct APtr<int>; // expected-error{{elaborated type refers to a non-tag type}} + template struct APtr<int>; // expected-error{{elaborated type refers to a type alias template}} } |