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

cs8036.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 59694800fd722117b58d425decea4e20bff47c03 (plain)
1
2
3
4
5
6
7
8
9
10
// CS9001: Only one part of a partial type can declare primary constructor parameters
// Line: 8

partial class Part(int arg)
{
}

partial class Part(int arg)
{
}