Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / test-696.cs
1 struct S {
2         public static implicit operator S (C c) { S s; return s; }
3         public static void f (S s) { }
4 }
5
6 class C {
7         public static void Main () { S.f (null); }
8 }