summaryrefslogtreecommitdiff
path: root/test/std/containers/sequences/array/array.tuple/get.fail.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/std/containers/sequences/array/array.tuple/get.fail.cpp')
-rw-r--r--test/std/containers/sequences/array/array.tuple/get.fail.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/std/containers/sequences/array/array.tuple/get.fail.cpp b/test/std/containers/sequences/array/array.tuple/get.fail.cpp
index 45e1d2b46b0f3..a7e56fccef019 100644
--- a/test/std/containers/sequences/array/array.tuple/get.fail.cpp
+++ b/test/std/containers/sequences/array/array.tuple/get.fail.cpp
@@ -31,6 +31,6 @@ int main()
typedef std::array<T, 3> C;
C c = {1, 2, 3.5};
std::get<3>(c) = 5.5; // expected-note {{requested here}}
- // expected-error@array:* {{static_assert failed "Index out of bounds in std::get<> (std::array)"}}
+ // expected-error-re@array:* {{static_assert failed{{( due to requirement '3U[L]{0,2} < 3U[L]{0,2}')?}} "Index out of bounds in std::get<> (std::array)"}}
}
}