Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/test/std/utilities/variant/variant.variant/variant.swap/
H A Dswap.pass.cpp146 struct NonThrowingNonNoexceptType { struct
149 NonThrowingNonNoexceptType() = default; argument
150 NonThrowingNonNoexceptType(int v) : value(v) {} in NonThrowingNonNoexceptType() function
151 NonThrowingNonNoexceptType(NonThrowingNonNoexceptType &&o) noexcept(false) in NonThrowingNonNoexceptType() function
157 operator=(NonThrowingNonNoexceptType &&) noexcept(false) { in operator =() argument
163 int NonThrowingNonNoexceptType::move_called = 0; argument