2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / tests / unsafe-8.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 }