Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / tests / gtest-376.cs
1 using System;
2
3 struct S<T> where T : struct
4 {
5         static object Box (T? o)
6         {
7                 if (o == null)
8                         return null;
9                 return (T) o;
10         }
11 }
12
13 class C
14 {
15         public static void Main ()
16         {
17         }
18 }