[w32file] Remove dead code
[mono.git] / mcs / errors / cs0579-11.cs
1 // CS0579: The attribute `System.ObsoleteAttribute' cannot be applied multiple times
2 // Line: 14
3
4
5 using System;
6
7 partial class C
8 {
9         [Obsolete ("A")]
10         partial void PartialMethod ()
11         {
12         }
13         
14         [Obsolete ("A")]
15         partial void PartialMethod ();  
16 }