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

cs0824.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a5e391c87f8c0fbf87d31b55738d8e60aa3d3b7a (plain)
1
2
3
4
5
6
7
// CS0824: Constructor `C.C()' is marked `external' but has no external implementation specified
// Line: 6

class C
{
	public extern C();
}