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

cs3017.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0a0866891ad4d4817300bd82d50f3e37c152b78 (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs3017.cs: You cannot specify the CLSCompliant attribute on a module that differs from the CLSCompliant attribute on the assembly
// Line: 6

using System;

[module: CLSCompliant (true)]
[assembly: CLSCompliant (false)]

class Test
{
}