repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-05-13 Rodrigo Kumpera <rkumpera@novell.com>
[mono-project.git]
/
mcs
/
tests
/
test-anon-67.cs
blob
f08522bf7f920226c1025dff42920cb8e28e2a40
1
public class
ClassOne
2
{
3
public delegate string
ReturnStringDelegate
();
4
5
public
ClassOne
(
ReturnStringDelegate d
)
6
{
7
}
8
9
public
ClassOne
(
string
s
)
10
:
this
(
new
ReturnStringDelegate
(
delegate
()
{ return s; }
))
11
{
12
}
13
14
public static void
Main
()
{ }
15
}