Home
last modified time | relevance | path

Searched defs:ThrowsMove (Results 1 – 3 of 3) sorted by relevance

/llvm-project/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
H A Dmove.pass.cpp178 struct ThrowsMove { in main() struct
179 ThrowsMove() noexcept {} in main() argument
180 ThrowsMove(ThrowsMove const&) noexcept {} in main() function
181 ThrowsMove(ThrowsMove &&) noexcept(false) {} in main() argument
182 ThrowsMove& operator=(ThrowsMove const&) noexcept { return *this; } in main()
183 ThrowsMove& operator=(ThrowsMove &&) noexcept { return *this; } in main()
/llvm-project/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.pass.cpp199 struct ThrowsMove { in main() struct
200 ThrowsMove() noexcept(false) {} in main() function
201 ThrowsMove(ThrowsMove const&) noexcept(false) {} in main() argument
202 ThrowsMove(ThrowsMove &&) noexcept(false) {} in main() argument
/llvm-project/libcxx/test/std/utilities/variant/variant.variant/variant.ctor/
H A Dmove.pass.cpp25 struct ThrowsMove { struct
26 ThrowsMove(ThrowsMove&&) noexcept(false) {} in ThrowsMove() function