2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0579-11.cs
blob2e9d6006ab4f920dd0461aca08bd9e7d0025a44b
1 // CS0579: The attribute `System.ObsoleteAttribute' cannot be applied multiple times
2 // Line: 14
5 using System;
7 partial class C
9 [Obsolete ("A")]
10 partial void PartialMethod ()
14 [Obsolete ("A")]
15 partial void PartialMethod ();