Align libmonoruntime vcxproj with makefile.
[mono.git] / mcs / errors / cs1604.cs
1 // CS1604: Cannot assign to `this' because it is read-only
2 // Line: 8
3
4 class C
5 {
6     public void Main ()
7     {
8                 this = null;
9     }
10 }