Merge pull request #4845 from lambdageek/dev-coop-delegates
[mono.git] / mcs / errors / cs0579-12.cs
1 // CS0579: The attribute `System.ObsoleteAttribute' cannot be applied multiple times
2 // Line: 12
3
4
5 using System;
6
7 partial class C
8 {
9         [Obsolete ("A")]
10         partial void PartialMethod ();
11         [Obsolete ("A")]
12         partial void PartialMethod ()
13         {
14         }
15 }