w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0619-16.cs
blob3ddce88e74c686179462704458b0533c0225649d
1 // CS0619: `Test_A.Test_A()' is obsolete: `Causes an error'
2 // Line: 13
4 using System;
5 public class Test_A
7 [Obsolete ("Causes an error", true)]
8 public Test_A () {}
11 public class Test_B: Test_A
13 public Test_B (): base () {}