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

cs3022.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 82231b3d1d3c018adf700d45331932344dcc541a (plain)
1
2
3
4
5
6
7
8
9
10
11
// cs3022.cs: CLSCompliant attribute has no meaning when applied to parameters. Try putting it on the method instead
// Line: 8
// Compiler options: -warn:1 -warnaserror

using System;
[assembly: CLSCompliant (true)]

public class Class {
	public void Test ([CLSCompliant(false)] uint u) {
	}
}