diff options
-rw-r--r-- | clang/test/Sema/invalid-cast.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/clang/test/Sema/invalid-cast.cpp b/clang/test/Sema/invalid-cast.cpp new file mode 100644 index 00000000000..2183352000d --- /dev/null +++ b/clang/test/Sema/invalid-cast.cpp @@ -0,0 +1,11 @@ +// RUN: %clang_cc1 -verify -fsyntax-only %s +// expected-no-diagnostics +// <rdar://problem/13153516> - This previously triggered an assertion failure. +template<class T> +struct X { + T array; +}; + +int foo(X<int[1]> x0) { + return x0.array[17]; +} |