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
* ResolvedReference.cs (.ctor): Set 'OriginalItemSpec' and 'ResolvedFrom',
[mcs.git]
/
tests
/
test-634.cs
blob
fe33d32b6567b3eb849eb273816b942cfc33f090
1
public class
Test
2
{
3
delegate void
D
();
4
static
D d
;
5
6
static public void
TestFunc
()
7
{
8
return
;
9
10
string
testStr
;
11
12
d
+=
delegate
()
13
{
14
testStr
=
"sss"
;
15
};
16
}
17
18
public static void
Main
(
string
[]
args
)
19
{
20
TestFunc
();
21
}
22
}