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


using System;

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