blob: c826c2ea88b714e573be24c0666f16cb16758c82 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS0619: `Test.Test()' is obsolete: `Causes an error'
// Line: 9
using System;
public class Test
{
[Obsolete ("Causes an error", true)]
public Test () {}
public Test (bool flag) : this () {}
}
|