summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0029-11.cs
blob: 962cab03f405350c5bbe9c305c4269697ccc1be2 (plain)
1
2
3
4
5
6
7
8
9
// CS0029: Cannot implicitly convert type `int' to `string'
// Line: 5

class A {
	public static implicit operator string (A a)
	{ 
		return 42;
 	}
}