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
use MOONLIGHT symbol
[mcs.git]
/
tests
/
gtest-307.cs
blob
86bc1fd28bfa08b4d910b00959e0e042a0ea876c
1
partial class
Foo
<
T
> {}
2
partial class
Foo
<
T
> {
3
public delegate int
F
();
4
}
5
6
class
Bar
{
7
static int
g
()
{ return 0; }
8
static int
Main
()
9
{
10
Foo
<
int
>.
F f
=
g
;
11
return
f
();
12
}
13
}