repo.or.cz
/
mono.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2010-06-17 Geoff Norton <gnorton@novell.com>
[mono.git]
/
mono
/
tests
/
bug-382986.cs
blob
185415c82caa39c22d857127c1ea8e8eeab1283b
1
using
System
;
2
using
Repro
;
3
4
public class
Extended
:
Base
{
5
protected override int
Test
()
{ return 0; }
6
}
7
8
9
public class
Driver
{
10
public static int
Main
() {
11
return new
Generic
<
Extended
>().
Run
(
new
Extended
());;
12
}
13
}