**** Merged from MCS ****
[mono-project.git] / mcs / tests / unsafe-8.cs
blob51ff6b0394d01344d84962a995de0e32e7cc9654
1 // Compiler options: -unsafe
3 unsafe class T {
4 static int Main () {
5 int len = 10;
6 int* x = stackalloc int [len];
7 return x [0];