2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0459-2.cs
blob6da05782c2acf468952303eca3f3b131ba1bae63
1 // CS0459: Cannot take the address of fixed variable `a'
2 // Line: 10
3 // Compiler options: -unsafe
5 class C
7 static int i;
9 public static unsafe void Test ()
11 fixed (int* a = &i) {
12 int** x = &a;