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

cs0261.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e0a9945e0521d5bb2081a5132b0dba8dfb45425 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0261: Partial declarations of `Foo' must be all classes, all structs or all interfaces
// Line: 6
partial class Foo
{ }

partial struct Foo
{ }

class X
{
	static void Main ()
	{ }
}