* TextBoxBase.cs: Use the new SuspendRecalc/ResumeRecalc methods
[mono-project.git] / mcs / errors / cs3002-2.cs
blobeb2f51213e8fd8a52f0d1026f8c573fa74d3b486
1 // cs3002-2.cs: Return type of `CLSClass.Foo()' is not CLS-compliant
2 // Line: 13
4 using System;
5 [assembly:CLSCompliant(true)]
7 public class CLSClass {
8 [CLSCompliant(false)]
9 public ulong Valid() {
10 return 1;
13 protected internal ulong Foo() {
14 return 1;
17 static void Main() {}