Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@
// MSVC/vcruntime falls back from the nothrow array new to the nothrow
// scalar new, instead of falling back on the throwing array new.
// https://developercommunity.visualstudio.com/t/vcruntime-nothrow-array-operator-new-fal/10373274
// XFAIL: target={{.+}}-windows-msvc
// This issue got fixed in MSVC 2022 17.14; with vcruntime from that version,
// this test does pass. (We could try to detect it and set a feature for when
// this is known broken, but that detection would essentially a copy of this
// test.)
// UNSUPPORTED: target={{.+}}-windows-msvc

#include <new>
#include <cstddef>
Expand Down
Loading