Merge pull request #4033 from ntherning/no-stdcall-for-icalls-on-windows-32-bit
[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 }