repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0536-2.cs
blob
a5bac3cfee43bfafa5ae0ee6b360b083fe94e86d
1
// cs0536-2.cs: `B' does not implement interface member `I.Test(int)'. `B.Test(int)' is either static, not public, or has the wrong return type
2
// Line: 11
3
4
interface
I
5
{
6
void
Test
(
int
a
);
7
}
8
9
class
B
:
I
10
{
11
public static void
Test
(
int
a
) {}
12
}