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

cs0556.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 36ff437d65b00129bb0b74b473e12eaf963c7001 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0556.cs : User-defined conversion must convert to or from the enclosing type
// Line : 8

class Blah {

	public static void Main () {}
	
	public static implicit operator int (int i) {}

}