Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

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; }
}
}
}
}