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

}