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: 31168607b5837e32538fbea93faba37cb43163f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// cs0579-2.cs: Duplicate `DebuggableAttribute' attribute
// Line: 7

using System.Diagnostics;

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

class MainClass {
        static void Main()
        {
        }
}