2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0211.cs
blob698d333ad97621e18ee538bdc672b29111698e5c
1 // cs0211.cs: Cannot take the address of the given expression
2 // Line: 7
3 // Compiler options: -unsafe
5 class UnsafeClass {
6 unsafe UnsafeClass () {
7 fixed (int* a = &(2)) {}