Merge pull request #495 from nicolas-raoul/fix-for-issue2907-with-no-formatting-changes
[mono.git] / mcs / tests / gtest-014.cs
1 public class Stack<S>
2 {
3         public Stack (S s)
4         { }
5
6         public void Push (S s)
7         { }
8 }
9
10 public class X
11 {
12         public static void Main ()
13         {
14                 Stack<int> s1 = new Stack<int> (3);
15                 s1.Push (4);
16
17                 Stack<string> s2 = new Stack<string> ("Hello");
18                 s2.Push ("Test");
19         }
20 }