Home
last modified time | relevance | path

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

/dports/devel/folly/folly-2021.12.27.00/folly/test/
H A DTryTest.cpp128 struct ThrowingMoveConstructor { in TEST() struct
130 explicit ThrowingMoveConstructor(int& counter) : counter_(counter) { in TEST() function
134 [[noreturn]] ThrowingMoveConstructor( in TEST() argument
135 ThrowingMoveConstructor&& other) noexcept(false) in TEST()
140 ThrowingMoveConstructor& operator=(ThrowingMoveConstructor&&) = delete; in TEST()
142 ~ThrowingMoveConstructor() { --counter_; } in TEST() argument
148 Try<ThrowingMoveConstructor> t1{in_place, counter}; in TEST()
149 Try<ThrowingMoveConstructor> t2{in_place, counter}; in TEST()
158 Try<ThrowingMoveConstructor> t1{in_place, counter}; in TEST()
159 Try<ThrowingMoveConstructor> t2; in TEST()