Merge pull request #5082 from kumpera/fix-ro-fs-file-delete
[mono.git] / mcs / errors / cs0579-3.cs
1 // CS0579: The attribute `System.ObsoleteAttribute' cannot be applied multiple times
2 // Line : 8
3
4 using System;
5
6 class MainClass {
7         [Obsolete]
8         [Obsolete]
9         static void Main()
10         {
11         }
12 }