Update pipeline-netcore-runtime.yml
[mono-project.git] / mcs / tests / gtest-020.cs
blobd1a0ee0f0d43f4d41ab267ac9bb1aa5706ef8b7b
1 struct Stack<S>
3 public void Hello (S s)
4 { }
7 class X
9 Stack<int> stack;
11 void Test ()
13 stack.Hello (3);
16 public static void Main ()
17 { }