summaryrefslogtreecommitdiff
path: root/mcs/tests/test-696.cs
blob: 1ef255eb7c27111d09cbebd64c343e153c1a404b (plain)
1
2
3
4
5
6
7
8
struct S {
	public static implicit operator S (C c) { S s; return s; }
	public static void f (S s) { }
}

class C {
	public static void Main () { S.f (null); }
}