[666376] Implement compiler option fullpaths
[mono.git] / mcs / errors / cs0215.cs
1 // cs0215.cs : 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 }