xref: /llvm-project/clang/test/Sema/invalid-cast.cpp (revision 0f1c1be1968076d6f96f8a7bcc4a15cf195ecd97)
1 // RUN: %clang_cc1 -verify -fsyntax-only %s
2 // expected-no-diagnostics
3 // This previously triggered an assertion failure.
4 template<class T>
5 struct X {
6  T array;
7 };
8 
foo(X<int[1]> x0)9 int foo(X<int[1]> x0) {
10  return x0.array[17];
11 }
12