Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0619-15.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d8caf36a34ea212baac965f3fdd907e28ca35a1 (plain)
1
2
3
4
5
6
7
8
9
10
// cs0619.cs: '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 () {}
}