2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0213-2.cs
blobae72e4cd9aaf4c3eab63c12204f1a573e216537d
1 // CS0213: You cannot use the fixed statement to take the address of an already fixed expression
2 // Line: 9
3 // Compiler options: -unsafe
5 unsafe struct S
7 public void Test ()
9 fixed (S* i = null) {