Home
last modified time | relevance | path

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

/llvm-project/libcxx/test/std/utilities/variant/variant.variant/variant.assign/
H A DT.pass.cpp78 struct ThrowsCtorTandMove { struct
79 int value;
80 ThrowsCtorTandMove() : value(0) {} in ThrowsCtorTandMove() argument
81 ThrowsCtorTandMove(int) noexcept(false) { throw 42; } in ThrowsCtorTandMove() function
82 ThrowsCtorTandMove(ThrowsCtorTandMove&&) noexcept(false) { assert(false); } in ThrowsCtorTandMove() argument
83 ThrowsCtorTandMove& operator=(int v) noexcept { in operator =()