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: 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;
    }
}