summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0579-11.cs
blob: 2e9d6006ab4f920dd0461aca08bd9e7d0025a44b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// CS0579: The attribute `System.ObsoleteAttribute' cannot be applied multiple times
// Line: 14


using System;

partial class C
{
	[Obsolete ("A")]
	partial void PartialMethod ()
	{
	}
	
	[Obsolete ("A")]
	partial void PartialMethod ();	
}