Add support for Windows x64 Full AOT + LLVM + Interpreter on CI. (#15276)
[mono-project.git] / mcs / tests / test-663.cs
blob141ae889798b5d80f8cdd0575f8597b634916261
1 class A
3 public static implicit operator int (A a)
5 return 1;
8 public static implicit operator bool (A a)
10 return false;
14 class C
16 public static void Main ()
18 switch (new A ())
20 default: break;