Add a test case for P%7346, which was fixed by not doing the operator

delete lookup until the end of the class definition.

llvm-svn: 110176
This commit is contained in:
John McCall 2010-08-04 01:07:02 +00:00
parent deb646ebb5
commit 3faf1cf3ea
1 changed files with 13 additions and 0 deletions

View File

@ -70,3 +70,16 @@ namespace test2 {
C c; // expected-note {{first required here}}
}
}
// PR7346
namespace test3 {
struct A {
virtual ~A();
static void operator delete(void*, const int &);
};
struct B : A {
virtual ~B() {}
static void operator delete(void*);
};
}