Switch to compiler-tester
[mono.git] /
1 // Compiler options: -unsafe
2
3 unsafe class T {
4         static int Main () {
5                 int len = 10;
6                 int* x = stackalloc int [len];
7                 return x [0];
8         }
9 }