Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0579-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d252ba3e579ba3644a546347258028d52c2ca93 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs0579.cs : Duplicate 'DebuggableAttribute' attribute// Line : 6
using System.Diagnostics;

[module: DebuggableAttribute (false, false)] 
[module: DebuggableAttribute (false, false)] 

class MainClass {
        static void Main()
        {
        }
}