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
Reenable AOT, it wasn't enabled on the x86 buildbot anyway.
[mcs.git]
/
tests
/
gtest-241.cs
blob
e0f57182f5b21b7607286ed8f25cb0feeee97e25
1
abstract public class
a
2
{
3
public abstract void
func
<
T
>(
ref
T arg
);
4
}
5
public class
b
:
a
6
{
7
public override void
func
<
T
>(
ref
T arg
)
8
{
9
}
10
}
11
class
main
{
12
static void
Main
() {}
13
}