invalid-cast.cpp 241 B

1234567891011
  1. // RUN: %clang_cc1 -verify -fsyntax-only %s
  2. // expected-no-diagnostics
  3. // <rdar://problem/13153516> - This previously triggered an assertion failure.
  4. template<class T>
  5. struct X {
  6. T array;
  7. };
  8. int foo(X<int[1]> x0) {
  9. return x0.array[17];
  10. }