repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add comment
[mcs.git]
/
tests
/
gtest-125.cs
blob
dbaf588107a107ff1dbea629f1aa7443dabab037
1
using
System
;
2
3
public interface
IA
<
T
>
where T
:
struct
{
4
5
}
6
7
public class
B
<
T
> :
IA
<
T
>
where T
:
struct
{
8
9
}
10
11
public class
MainClass
{
12
public static void
Main
() {}
13
14
}
15