Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0215.cs
1 // CS0215: The return type of operator True or False must be bool
2 // Line: 11 
3
4 class Blah {
5
6         public static void Main ()
7         {
8
9         }
10
11         public static int operator true (Blah i) {}
12
13 }