Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / test-408.cs
bloba1649cfd237c31f6b63713d062e349b7f5bedc1e
1 // Compiler options: -unsafe
3 unsafe class T {
4 public static int Main () {
5 int len = 10;
6 int* x = stackalloc int [len];
7 for (int i = 0; i < len; i++)
9 if (x [i] != 0)
10 return i + 1;
12 return 0;