Home
last modified time | relevance | path

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

/external/llvm-project/clang/test/SemaCXX/
Dcxx1z-copy-omission.cpp12 struct Indestructible { struct
13 Indestructible();
14 ~Indestructible() = delete; // expected-note 1+{{deleted}}
28 Indestructible make_indestructible();
106 sizeof(Indestructible{}); // expected-error {{deleted}} in test_expressions()
109 …typeid(Indestructible{}); // expected-error {{deleted}} expected-error {{you need to include <type… in test_expressions()
116 using I = decltype(Indestructible()); // expected-error {{deleted}} in test_expressions()
117 using I = decltype(Indestructible{}); // expected-error {{deleted}} in test_expressions()
Drecovery-expr-type.cpp4 struct Indestructible { struct
6 ~Indestructible() = delete; // expected-note 2{{deleted}}
8 Indestructible make_indestructible();
Dconstant-expression-cxx2a.cpp689 struct Indestructible { in abnormal_termination() struct
690 constexpr ~Indestructible(); // not defined in abnormal_termination()
716 Indestructible indest; in abnormal_termination()
/external/fmtlib/test/
Dcore-test.cc76 TEST(BufferTest, Indestructible) { in TEST() argument