mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-13 14:47:00 +00:00
9c9b4977a4
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6299 91177308-0d34-0410-b5e6-96231b3b80d8
13 lines
144 B
C
13 lines
144 B
C
#include <stdio.h>
|
|
|
|
int test(int Num) {
|
|
int Arr[Num];
|
|
Arr[2] = 0;
|
|
return Arr[2];
|
|
}
|
|
|
|
int main() {
|
|
printf("%d\n", test(4));
|
|
return 0;
|
|
}
|