Disable the deduction guide test I added in 309296 for the moment, while I figure...
authorMarshall Clow <mclow.lists@gmail.com>
Thu, 27 Jul 2017 18:47:35 +0000 (18:47 +0000)
committerMarshall Clow <mclow.lists@gmail.com>
Thu, 27 Jul 2017 18:47:35 +0000 (18:47 +0000)
llvm-svn: 309307

libcxx/test/std/utilities/variant/variant.variant/variant.ctor/copy.pass.cpp

index 676c8bc..1696f9c 100644 (file)
@@ -261,9 +261,13 @@ int main() {
   test_copy_ctor_valueless_by_exception();
   test_copy_ctor_sfinae();
   test_constexpr_copy_ctor_extension();
+#if 0
+// disable this for the moment; it fails on older compilers.
+//  Need to figure out which compilers will support it.
 { // This is the motivating example from P0739R0
   std::variant<int, double> v1(3);
   std::variant v2 = v1;
   (void) v2;
 }
+#endif
 }