* CheckBox.cs: Do not change the status of a checkbox when there
[mono.git] / mcs / tests / gen-22.cs
1 class Foo<T>
2 {
3         public void Hello ()
4         { }
5
6         public void World (T t)
7         {
8                 Hello ();
9         }
10 }
11
12 class Bar : Foo<int>
13 {
14         public void Test ()
15         {
16                 Hello ();
17                 World (4);
18         }
19 }
20
21 class X
22 {
23         static void Main ()
24         {
25                 Bar bar = new Bar ();
26                 bar.Test ();
27         }
28 }