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
2009-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
gcs1501-3.cs
blob
a8f4e9e1a5f2806bffea9f578b695ba025546cb7
1
// CS1501: No overload for method `Foo' takes `0' arguments
2
// Line: 15
3
4
class
Base
<
T
>
5
{
6
protected virtual void
Foo
<
U
> (
U u
)
7
{
8
}
9
}
10
11
class
Derived
<
T
> :
Base
<
int
>
12
{
13
protected override void
Foo
<
U
> (
U u
)
14
{
15
base
.
Foo
();
16
}
17
}