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.cpp39 struct ThrowsAssignT { struct
40 ThrowsAssignT(int) noexcept {} in ThrowsAssignT() argument
41 ThrowsAssignT &operator=(int) noexcept(false) { return *this; } in operator =()
64 struct ThrowsAssignT { struct
65 int value;
66 ThrowsAssignT() : value(0) {} in ThrowsAssignT() argument
67 ThrowsAssignT(int v) noexcept : value(v) {} in ThrowsAssignT() function
68 ThrowsAssignT &operator=(int) noexcept(false) { throw 42; } in operator =()