Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-partial-05.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e097bfc7864f89685516203f0db68fd9463936f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Compiler options: -langversion:default

class B {
}

interface iface {
}

partial class A : B {
}

partial class A : iface {
}


partial class A2 : System.Object {
}

partial class A2 {
}

class D { static void Main () {} }