brintos

brintos / llvm-project-archived public Read only

0
0
Text · 213 B · 5c77aaf Raw
12 lines · cpp
1// RUN: %clang_cc1 -verify -fsyntax-only %s2// expected-no-diagnostics3// This previously triggered an assertion failure.4template<class T>5struct X {6 T array;7};8 9int foo(X<int[1]> x0) {10 return x0.array[17];11}12