This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs0619-16.cs
1 // cs0619.cs: 'Test_A.Test_A()' is obsolete: 'Causes an error'
2 // Line: 13
3
4 using System;
5 public class Test_A
6 {
7         [Obsolete ("Causes an error", true)]
8         public Test_A () {}
9 }
10
11 public class Test_B: Test_A
12 {
13         public Test_B (): base () {}
14 }