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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0736-2.cs
blob
7465329a51547e0540ba9e9c4845da68866f611a
1
// CS0736: `B' does not implement interface member `I.Test(int)' and the best implementing candidate `B.Test(int)' is static
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
}