Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gtest-125.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dbaf588107a107ff1dbea629f1aa7443dabab037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

public interface IA<T> where T : struct {

}

public class B<T> : IA<T> where T:struct {

}

public class MainClass {
        public static void Main () {}

}