[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs0619-15.cs
1 // CS0619: `Test.Test()' is obsolete: `Causes an error'
2 // Line: 9
3
4 using System;
5 public class Test
6 {
7         [Obsolete ("Causes an error", true)]
8         public Test () {}
9         public Test (bool flag) : this () {}
10 }