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

gcs3019.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c829a72ee4cc7ef318c313af53d21ab9be4cf45 (plain)
1
2
3
4
5
6
7
8
9
10
// CS3019: CLS compliance checking will not be performed on `T' because it is not visible from outside this assembly
// Line: 8
// Compiler options: -warnaserror -warn:2

using System;
[assembly:CLSCompliant(true)]

public class CLSClass<[CLSCompliant (false)] T>
{
}