blob: 8bd4421d6c15a2d1c64423f16ca8b588b691c7f9 [file] [log] [blame]
Anders Carlsson858c64d2009-02-22 01:38:57 +00001// RUN: clang -triple=i686-apple-darwin9 -fnext-runtime -emit-llvm -o %t %s &&
2// RUN: grep -e "\^i" %t | count 1 &&
3// RUN: grep -e "\[0i\]" %t | count 1
4
5int main()
6{
7 int n;
8
9 const char * inc = @encode(int[]);
10 const char * vla = @encode(int[n]);
11}