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
2009-03-11 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
gtest-403.cs
blob
c4bba300077666fa326ae669ca7c71679aaf054e
1
// Compiler options: -r:gtest-403-lib.dll
2
3
using
System
;
4
5
interface
I
{}
6
7
public struct
S
<
T
> :
I
8
{
9
public void
Foo
()
10
{
11
}
12
}
13
14
class
T
15
{
16
public static void
Main
()
17
{
18
S
<
int
>
i
;
19
ExS
<
bool
>
e
;
20
i
.
Foo
();
21
e
.
Bar
();
22
}
23
}