Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/variant/variant.variant/variant.assign/
DT.pass.cpp42 struct ThrowsCtorT { struct
43 ThrowsCtorT(int) noexcept(false) {} in ThrowsCtorT() argument
44 ThrowsCtorT &operator=(int) noexcept { return *this; } in operator =()
62 struct ThrowsCtorT { struct
63 int value;
64 ThrowsCtorT() : value(0) {} in ThrowsCtorT() function
65 ThrowsCtorT(int) noexcept(false) { throw 42; } in ThrowsCtorT() argument
66 ThrowsCtorT &operator=(int v) noexcept { in operator =()