mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-16 01:20:04 -04:00
15 lines
232 B
C++
15 lines
232 B
C++
// RUN: %clang_cc1 %s -emit-llvm-only -verify -fcxx-exceptions -fexceptions
|
|
// expected-no-diagnostics
|
|
// PR7281
|
|
|
|
class A {
|
|
public:
|
|
~A();
|
|
};
|
|
class B : public A {
|
|
void ice_throw();
|
|
};
|
|
void B::ice_throw() {
|
|
throw *this;
|
|
}
|