Home
last modified time | relevance | path

Searched refs:ThrowingBase (Results 1 – 1 of 1) sorted by relevance

/external/clang/test/CXX/except/except.spec/
Dp14.cpp71 struct ThrowingBase { struct
72 ThrowingBase() noexcept(false);
73 ThrowingBase(const ThrowingBase&) noexcept(false);
74 ThrowingBase(ThrowingBase&&) noexcept(false);
75 ThrowingBase &operator=(const ThrowingBase&) noexcept(false);
76 ThrowingBase &operator=(ThrowingBase&&) noexcept(false);
77 ~ThrowingBase() noexcept(false);
79 struct Derived : ThrowingBase {
87 struct Derived2 : ThrowingBase {
95 struct Derived3 : ThrowingBase {