Home
last modified time | relevance | path

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

/external/clang/test/CXX/special/class.copy/
Dimplicit-move.cpp82 struct PrivateDestructor { struct
83 PrivateDestructor() noexcept;
84 PrivateDestructor(const PrivateDestructor &) noexcept(false);
85 PrivateDestructor(PrivateDestructor &&) noexcept;
87 ~PrivateDestructor() noexcept;
90 struct InheritsPrivateDestructor : PrivateDestructor {}; // expected-note{{base class 'PrivateDestr…
92 PrivateDestructor pd; // expected-note{{field 'pd' has an inaccessible destructor}}
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
Dis_nothrow_destructible.pass.cpp55 struct PrivateDestructor { private: ~PrivateDestructor() {}}; in ~PrivateDestructor() struct
108 test_is_not_nothrow_destructible<PrivateDestructor>(); in main()
Dis_trivially_destructible.pass.cpp54 struct PrivateDestructor { private: ~PrivateDestructor() {}}; in ~PrivateDestructor() struct
113 test_is_not_trivially_destructible<PrivateDestructor>(); in main()
Dis_destructible.pass.cpp80 struct PrivateDestructor { private: ~PrivateDestructor() {}}; in ~PrivateDestructor() struct
128 test_is_not_destructible<PrivateDestructor>(); in main()