a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
24 lines
272 B
C#
Executable File
24 lines
272 B
C#
Executable File
// CS0540: `N.Nested.C.I.P': containing type does not implement interface `N.Nested.I'
|
|
// Line: 17
|
|
|
|
using System;
|
|
|
|
namespace N
|
|
{
|
|
class Nested
|
|
{
|
|
public interface I
|
|
{
|
|
bool P { get; }
|
|
}
|
|
|
|
public class C
|
|
{
|
|
bool I.P
|
|
{
|
|
get { return true; }
|
|
}
|
|
}
|
|
}
|
|
}
|