Diff Detail
- Repository
- rG LLVM Github Monorepo
Unit Tests
Event Timeline
libcxx/test/std/utilities/variant/variant.visit/visit_return_type.pass.cpp | ||
---|---|---|
242 | This, and below, no longer check the return value of std::visit call is the correct value. Isn't that more or less the whole point of this test? |
libcxx/test/std/utilities/variant/variant.visit/visit_return_type.pass.cpp | ||
---|---|---|
242 | Look closer :). This checks that 42 == 42. This uses the opertor,. std::visit returns void in these cases. |
libcxx/test/std/utilities/variant/variant.visit/visit_return_type.pass.cpp | ||
---|---|---|
242 | Ah, got it. Thanks! |
libcxx/test/std/concepts/concepts.lang/concept.constructible/constructible_from.compile.pass.cpp | ||
---|---|---|
109–111 | Aren't throw() and noexcept specifications indistinguishable? (Same for noexcept and noexcept(true), but these don't produce warnings) | |
libcxx/test/std/language.support/support.start.term/quick_exit.pass.cpp | ||
26 | I'll add an assert(false). |
@Mordante These test-cases look completely redundant to me. Do you know why you added them?