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-01-24 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
tests
/
ltest-14.cs
blob
949c7f8c5e7f4c9fc46e4cd34fd481d587a4fbc8
1
// identity functions
2
using
System
;
3
4
class
Test
{
5
public static void
Main
()
6
{
7
}
8
9
static void
Foo
<
T
> ()
10
{
11
Func
<
T
,
T
>
f
=
n
=>
n
;
12
}
13
}