Skip to content
Snippets Groups Projects
Commit 964b97cc authored by Richard Smith's avatar Richard Smith
Browse files

Test for diagnostic quality improvement in r256049.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@256083 91177308-0d34-0410-b5e6-96231b3b80d8
parent 9103b998
No related branches found
No related tags found
No related merge requests found
......@@ -152,3 +152,10 @@ void DontCrashOnThis() {
T &pT = T();
pT;
}
namespace abstract_dependent_class {
template<typename T> struct A {
virtual A<T> *clone() = 0; // expected-note {{pure virtual}}
};
template<typename T> A<T> *A<T>::clone() { return new A<T>; } // expected-error {{abstract class type 'A<T>'}}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment