summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0714-3.cs
blob: 14cc2a8c2fd3fc823fff5c42ccec18898cdedcd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0714: Static class `C' cannot implement interfaces
// Line: 12

interface I
{
}

static partial class C
{
}

partial class C : I
{
}