[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0102-14.cs
1 // CS0102: The type `T' already contains a definition for `A'
2 // Line: 6
3
4 class T{
5         public string A { get { return "a"; } }
6         public string A (int a) { return "a"; }
7 }