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

cs0764.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4c89e72a3acbffe14c33bddaf9ff295f5ac609fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0764: A partial method declaration and partial method implementation must be both `unsafe' or neither
// Line: 11
// Compiler options: -unsafe

public partial class C
{
	unsafe partial void Foo ()
	{
	}
	
	partial void Foo ();
}