Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1604.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9646df2ffdee5149ee3df60531bdf36bcce3a4e2 (plain)
1
2
3
4
5
6
7
8
9
10
// cs1604.cs: Cannot assign to 'this' because it is read-only
// Line: 8

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