diff options
Diffstat (limited to 'libcxx/test/std/containers/sequences/array/begin.pass.cpp')
-rw-r--r-- | libcxx/test/std/containers/sequences/array/begin.pass.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libcxx/test/std/containers/sequences/array/begin.pass.cpp b/libcxx/test/std/containers/sequences/array/begin.pass.cpp index 8cdef466a8f..b12ffc851b8 100644 --- a/libcxx/test/std/containers/sequences/array/begin.pass.cpp +++ b/libcxx/test/std/containers/sequences/array/begin.pass.cpp @@ -31,13 +31,4 @@ int main() *i = 5.5; assert(c[0] == 5.5); } - { - struct NoDefault { - NoDefault(int) {} - }; - typedef NoDefault T; - typedef std::array<T, 0> C; - C c = {}; - assert(c.begin() == c.end()); - } } |