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-13 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0629.cs
blob
3e3b123b707e78d1cd1160575ed4fe41cd744602
1
// cs0629.cs: Conditional member `DerivedClass.Show(int)' cannot implement interface member `IFace.Show(int)'
2
// Line: 12
3
4
interface
IFace
5
{
6
void
Show
(
int
arg
);
7
}
8
9
class
DerivedClass
:
IFace
10
{
11
[
System
.
Diagnostics
.
Conditional
(
"DEBUG"
)]
12
public void
Show
(
int
arg
) {}
13
}