repo.or.cz
/
mono-project
/
dkf.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-10 Jeffrey Stedfast <fejj@novell.com>
[mono-project/dkf.git]
/
mcs
/
tests
/
gtest-245.cs
blob
dbd6d28a41e80610670fd14e340f61b0a146f7f2
1
using
System
;
2
3
class
DerivedGenericClass
<
T
> :
BaseClass
4
{
5
public override void
Foo
() {}
6
7
public void
Baz
()
8
{
9
Foo
();
10
}
11
}
12
13
abstract class
BaseClass
14
{
15
public abstract void
Foo
();
16
}
17
18
class
X
19
{
20
static void
Main
()
21
{
22
}
23
}