Home
last modified time | relevance | path

Searched refs:PotentiallyThrowingCopyAssignable (Results 1 – 3 of 3) sorted by relevance

/llvm-project/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.assign/
H A Dconst_pair.pass.cpp28 struct PotentiallyThrowingCopyAssignable { struct
29 PotentiallyThrowingCopyAssignable(PotentiallyThrowingCopyAssignable const&) = delete;
30PotentiallyThrowingCopyAssignable& operator=(PotentiallyThrowingCopyAssignable const&) { return *t… in operator =() argument
72 typedef std::tuple<PotentiallyThrowingCopyAssignable, long> Tuple; in main()
73 typedef std::pair<PotentiallyThrowingCopyAssignable, int> Pair; in main()
H A Dconvert_copy.pass.cpp44 struct PotentiallyThrowingCopyAssignable { struct
45 PotentiallyThrowingCopyAssignable(PotentiallyThrowingCopyAssignable const&) = delete;
46PotentiallyThrowingCopyAssignable& operator=(PotentiallyThrowingCopyAssignable const&) { return *t… in operator =() argument
125 typedef std::tuple<PotentiallyThrowingCopyAssignable, long> T0; in main()
126 typedef std::tuple<PotentiallyThrowingCopyAssignable, int> T1; in main()
H A Dcopy.pass.cpp40 struct PotentiallyThrowingCopyAssignable { struct
41PotentiallyThrowingCopyAssignable& operator=(PotentiallyThrowingCopyAssignable const&) { return *t… in operator =() argument
147 using T = std::tuple<PotentiallyThrowingCopyAssignable, int>; in main()