summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0556.cs
blob: 92511d17a1e7bc0d6140f50476175f054f5d5ab3 (plain)
1
2
3
4
5
6
7
8
9
10
// CS0556: 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) {}

}