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

cs3018.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4cf9ec73a891afc4c722cbea2324165ae9b6e8af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs3018.cs: 'NotCompliant.Compliant' cannot be marked as CLS-Compliant because it is a member of non CLS-Compliant type 'NotCompliant'
// Line: 9

using System;
[assembly: CLSCompliant (true)]

[CLSCompliant (false)]
public class NotCompliant
{
		[CLSCompliant (true)]
		public class Compliant
		{
		}
}