[build] Fix warning (#4177)
[mono-project.git] / mcs / tests / test-696.cs
blob1ef255eb7c27111d09cbebd64c343e153c1a404b
1 struct S {
2 public static implicit operator S (C c) { S s; return s; }
3 public static void f (S s) { }
6 class C {
7 public static void Main () { S.f (null); }