svn path=/branches/mono-1-1-9/mcs/; revision=51207
[mono.git] / mcs / tests / test-408.cs
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 }