Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs1525-12.cs
1 // CS1525: Unexpected symbol `==', expecting `type'
2 // Line: 8
3
4 class A
5 {
6         public static implicit operator == (A a, bool b)
7         {
8                 return false;
9         }
10 }