2004-03-01 Larry Ewing <lewing@ximian.com>
[mono-project.git] / mcs / tests / gen-22.cs
blobf19d0055413bd2aa8c6ab732baefd5902067191d
1 class Foo<T>
3 public void Hello ()
4 { }
6 public void World (T t)
8 Hello ();
12 class Bar : Foo<int>
14 public void Test ()
16 Hello ();
17 World (4);
21 class X
23 static void Main ()
25 Bar bar = new Bar ();
26 bar.Test ();