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

test-696.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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); }
}