* DataGridTextBoxColumn.cs: only hide the textbox if it's still
[mono.git] / mcs / tests / test-cls-11.cs
1 using System;
2 [assembly:CLSCompliant (true)]
3
4 [CLSCompliant (true)]
5 public abstract class CLSClass {
6         [CLSCompliant (true)]
7         public abstract void Test (IComparable arg);
8 }
9
10 public abstract class CLSCLass_2 {
11         public abstract void Test ();
12 }
13
14 public abstract class CLSClass_3 {
15         internal abstract void Test ();
16 }
17
18 public class MainClass {
19         public static void Main () {
20         }
21 }