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: 72c57ba9b5196c406fbed2bc52300b9ba8003138 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0555.cs: User-defined operator 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) {}

}