[mcs] Fixes codegen for pattern probing with value-type variables
[mono.git] / mcs / errors / cs1525-12.cs
1 // CS1525: Unexpected symbol `==', expecting `(' or `type'
2 // Line: 8
3
4 class A
5 {
6         public static implicit operator == (A a, bool b)
7         {
8                 return false;
9         }
10 }