w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0619-15.cs
blobc826c2ea88b714e573be24c0666f16cb16758c82
1 // CS0619: `Test.Test()' is obsolete: `Causes an error'
2 // Line: 9
4 using System;
5 public class Test
7 [Obsolete ("Causes an error", true)]
8 public Test () {}
9 public Test (bool flag) : this () {}