Take stars out of types where they make more sense.
[mono-project.git] / mcs / tests / gtest-014.cs
blobe03d31a56da4c142786b8cfd01e0c74abd1cc4a7
1 public class Stack<S>
3 public Stack (S s)
4 { }
6 public void Push (S s)
7 { }
10 public class X
12 public static void Main ()
14 Stack<int> s1 = new Stack<int> (3);
15 s1.Push (4);
17 Stack<string> s2 = new Stack<string> ("Hello");
18 s2.Push ("Test");