blob: 3ddce88e74c686179462704458b0533c0225649d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS0619: `Test_A.Test_A()' is obsolete: `Causes an error'
// Line: 13
using System;
public class Test_A
{
[Obsolete ("Causes an error", true)]
public Test_A () {}
}
public class Test_B: Test_A
{
public Test_B (): base () {}
}
|