[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0102-21.cs
1 // CS0102: The type `X' already contains a definition for `False'
2 // Line: 11
3
4 class X
5 {
6         bool False<T> ()
7         {
8                 return false;
9         }
10
11         bool False {
12                 get {
13                         return false;
14                 }
15         }
16 }