Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/variant/variant.variant/variant.swap/
Dswap.pass.cpp153 struct NonThrowingNonNoexceptType { struct
156 NonThrowingNonNoexceptType() = default; argument
157 NonThrowingNonNoexceptType(int v) : value(v) {} in NonThrowingNonNoexceptType() function
158 NonThrowingNonNoexceptType(NonThrowingNonNoexceptType &&o) noexcept(false) in NonThrowingNonNoexceptType() argument
164 operator=(NonThrowingNonNoexceptType &&) noexcept(false) { in operator =() argument
170 int NonThrowingNonNoexceptType::move_called = 0; argument