2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / 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;