Home
last modified time | relevance | path

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

/external/libcxx/test/std/utilities/variant/variant.variant/variant.assign/
DT.pass.cpp47 struct ThrowsAssignT { struct
48 ThrowsAssignT(int) noexcept {} in ThrowsAssignT() function
49 ThrowsAssignT &operator=(int) noexcept(false) { return *this; } in operator =()
94 struct ThrowsAssignT { struct
95 int value;
96 ThrowsAssignT() : value(0) {} in ThrowsAssignT() function
97 ThrowsAssignT(int v) noexcept : value(v) {} in ThrowsAssignT() function
98 ThrowsAssignT &operator=(int) noexcept(false) { throw 42; } in operator =()