2005-01-31 Zoltan Varga <vargaz@freemail.hu>
[mono.git] / mcs / errors / cs0211.cs
1 // cs0211.cs: Cannot take the address of the given expression
2 // Line: 7
3 // Compiler options: -unsafe
4
5 class UnsafeClass {
6         unsafe UnsafeClass () {
7                 fixed (int* a = &(2)) {}
8         }
9 }
10