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

cs0267-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bb3cfe2262cba22680403d0988704bb2e8646129 (plain)
1
2
3
4
5
6
// CS0267: The `partial' modifier can be used only immediately before `class', `struct', `interface', or `void' keyword
// Line: 4

public partial static class Test
{
}