HomeSort by relevance Sort by last modified time
    Searched refs:PrivateDestructor (Results 1 - 4 of 4) sorted by null

  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_nothrow_destructible.pass.cpp 39 struct PrivateDestructor { private: ~PrivateDestructor() {}};
92 test_is_not_nothrow_destructible<PrivateDestructor>();
is_trivially_destructible.pass.cpp 38 struct PrivateDestructor { private: ~PrivateDestructor() {}};
97 test_is_not_trivially_destructible<PrivateDestructor>();
is_destructible.pass.cpp 63 struct PrivateDestructor { private: ~PrivateDestructor() {}};
111 test_is_not_destructible<PrivateDestructor>();
  /external/clang/test/CXX/special/class.copy/
implicit-move.cpp 82 struct PrivateDestructor {
83 PrivateDestructor() noexcept;
84 PrivateDestructor(const PrivateDestructor &) noexcept(false);
85 PrivateDestructor(PrivateDestructor &&) noexcept;
87 ~PrivateDestructor() noexcept;
90 struct InheritsPrivateDestructor : PrivateDestructor {}; // expected-note{{base class 'PrivateDestructor' has an inaccessible destructor}}
92 PrivateDestructor pd; // expected-note{{field 'pd' has an inaccessible destructor}
    [all...]

Completed in 1247 milliseconds