blob: 77a78c39235daa98ae0821b9c018ca06ec580b8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// CS3022: 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) {
}
}
|