Update mcs/class/System.Core/System/TimeZoneInfo.cs
[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         static void Main () { S.f (null); }
8 }