[sre] Wrap mono_image_create_token with HANDLE_FUNCTION_{ENTER,RETURN}
[mono-project.git] / mcs / tests / gtest-009.cs
blob2279fe8aa190f862ca83c0bd8b6a1c9434fb4c43
1 using System;
3 interface I
5 void Hello ();
8 class Stack<T>
9 where T : ICloneable
11 public object Test (T t)
13 return t.Clone ();
17 class Test
21 class X
23 public static void Main()