summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/init-expr-crash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/init-expr-crash.cpp')
-rw-r--r--test/SemaCXX/init-expr-crash.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/SemaCXX/init-expr-crash.cpp b/test/SemaCXX/init-expr-crash.cpp
index 407da78e60..201ab03955 100644
--- a/test/SemaCXX/init-expr-crash.cpp
+++ b/test/SemaCXX/init-expr-crash.cpp
@@ -29,3 +29,11 @@ template <class T> struct B {
return 0;
}
};
+
+// This test checks for a crash that resulted from us miscomputing the
+// dependence of a nested initializer list.
+template<int> struct X {
+ static constexpr int n = 4;
+ static constexpr int a[1][1] = {n};
+};
+