Ooops. I checked in a test for a bug I haven't fixed yet. Temporrarily commented it out.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@319693 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Marshall Clow
2017-12-04 20:46:38 +00:00
parent 46b4ad5400
commit cd64646026

View File

@@ -48,6 +48,7 @@ int main()
test(S("12345678901234567890"), 'a', S("12345678901234567890a"));
}
#endif
#if 0
{
// https://bugs.llvm.org/show_bug.cgi?id=31454
std::basic_string<veryLarge> s;
@@ -56,4 +57,5 @@ int main()
s.push_back(vl);
s.push_back(vl);
}
#endif
}