Skip to content
Snippets Groups Projects
Commit df2aa1ef authored by Zhongxing Xu's avatar Zhongxing Xu
Browse files

Add test code for array initialization.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@58502 91177308-0d34-0410-b5e6-96231b3b80d8
parent 31fc07df
No related branches found
No related tags found
No related merge requests found
...@@ -32,3 +32,8 @@ void f2() { ...@@ -32,3 +32,8 @@ void f2() {
void f3() { void f3() {
STYPE s; STYPE s;
} }
void f4() {
int a[] = { 1, 2, 3};
int b[3] = { 1, 2 };
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment