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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0540-2.cs
blob
e9dc84a3eabe2532f9ba605f5857dcb87e31a9c5
1
// CS0540: `N.Nested.C.I.P': containing type does not implement interface `N.Nested.I'
2
// Line: 17
3
4
using
System
;
5
6
namespace
N
7
{
8
class
Nested
9
{
10
public interface
I
11
{
12
bool
P { get; }
13
}
14
15
public class
C
16
{
17
bool
I
.
P
18
{
19
get
{ return true; }
20
}
21
}
22
}
23
}