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
remove NotWorking
[mcs.git]
/
tests
/
gtest-224.cs
blob
b576ced50ef8978bd884c5fa283d4864a083c5ea
1
class
Base
2
{
3
public virtual void
Foo
<
T
> () {}
4
}
5
6
class
Derived
:
Base
7
{
8
public override void
Foo
<
T
> () {}
9
}
10
11
class
Driver
12
{
13
public static void
Main
()
14
{
15
new
Derived
().
Foo
<
int
> ();
16
}
17
}
18