summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1604.cs
blob: aade078c9b4afb443ae1d5683c30b5303496a804 (plain)
1
2
3
4
5
6
7
8
9
10
// CS1604: Cannot assign to `this' because it is read-only
// Line: 8

class C
{
    public void Main ()
    {
		this = null;
    }
}