2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0459-4.cs
blobb46d564e7b3621cfc49e356772117ccb7b73bc85
1 // CS0459: Cannot take the address of `this' because it is read-only
2 // Line: 11
3 // Compiler options: -unsafe
5 using System;
7 class X {
9 unsafe void Test ()
11 X x = *&this;