Skip to content
Snippets Groups Projects
Commit 4d82e403 authored by Marshall Clow's avatar Marshall Clow
Browse files

Disable the deduction guide test I added in 309296 for the moment, while I...

Disable the deduction guide test I added in 309296 for the moment, while I figure out which compilers don't support deduction guides

llvm-svn: 309307
parent 165a1edc
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment