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
bring Mono Security to monotouch
[mcs.git]
/
tests
/
gtest-anon-28.cs
blob
bb8941edb037874457c978d7f4cfaeda5e410e2b
1
abstract class
A
{
2
public abstract void
Foo
<
T
>()
where T
:
struct
;
3
}
4
5
class
B
:
A
{
6
public delegate void
Del
();
7
8
public override void
Foo
<
T
>()
9
{
10
Del d
=
delegate
()
{Foo<T>();}
;
11
}
12
13
public static void
Main
(){}
14
}
15