Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs0619-16.cs
1 // CS0619: `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 }