[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0029-23.cs
1 // CS0029: Cannot implicitly convert type `bool' to `int'
2 // Line : 7
3
4 class T {
5         static int Main ()
6         {
7                 int a = default(bool);
8         }
9 }