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

cs0555.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 110f952d25fa906186c437a150da5eb2edd5adb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0555.cs : User-defined conversion cannot take an object of the enclosing type
// and convert to an object of the enclosing type
// Line : 8

class Blah {

	public static void Main () {}

	public static implicit operator Blah (Blah i) {}

}