[ci] Small improvements for run-jenkins and collect-coverage. (#5669)
[mono.git] / mcs / tests / gtest-457.cs
1 using System;
2
3 class Program
4 {
5         class C
6         {
7         }
8
9         void Foo<T> () where T : C
10         {
11         }
12
13         public static int Main ()
14         {
15                 return 0;
16         }
17 }