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

cs0657-18.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a2602a3acd1882c40a982969e5fde9fa4b78d25e (plain)
1
2
3
4
5
6
7
8
9
10
// cs0657.cs : 'assembly' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'type'
// Line : 9

using System;

[assembly: CLSCompliant (false)]
public class C {}
    
[assembly: CLSCompliant (false)]
public class D {}