Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / tests / gtest-013.cs
1 // Compiler options: -r:gtest-013-lib.dll
2
3 public class X
4 {
5         Stack<int> stack;
6
7         void Test ()
8         {
9                 stack.Hello (3);
10         }
11
12         public static void Main ()
13         { }
14 }