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.cpp34 struct ThrowsCtorT { struct
35 ThrowsCtorT(int) noexcept(false) {} in ThrowsCtorT() function
36 ThrowsCtorT &operator=(int) noexcept { return *this; } in operator =()
54 struct ThrowsCtorT { struct
55 int value;
56 ThrowsCtorT() : value(0) {} in ThrowsCtorT() argument
57 ThrowsCtorT(int) noexcept(false) { throw 42; } in ThrowsCtorT() function
58 ThrowsCtorT &operator=(int v) noexcept { in operator =()