ChangeLog entries
[mono.git] / mcs / errors / cs0211.cs
1 // cs0211.cs: Cannot take the address of the given expression\r
2 // Line: 7\r
3 // Compiler options: -unsafe\r
4 \r
5 class UnsafeClass {\r
6         unsafe UnsafeClass () {\r
7                 fixed (int* a = &(2)) {}\r
8         }\r
9 }\r
10 \r
11 \r