2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3022.cs
blob82231b3d1d3c018adf700d45331932344dcc541a
1 // cs3022.cs: CLSCompliant attribute has no meaning when applied to parameters. Try putting it on the method instead
2 // Line: 8
3 // Compiler options: -warn:1 -warnaserror
5 using System;
6 [assembly: CLSCompliant (true)]
8 public class Class {
9 public void Test ([CLSCompliant(false)] uint u) {