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

gcs0843.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 35621cd0aeb32a2ba7c47bd8e8a43a601ad00a37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0843: An automatically implemented property `S.Short' must be fully assigned before control leaves the constructor. Consider calling default contructor
// Line: 8

using System;

struct S
{
	public S (int value)
	{
	}
	
	public short Short { get; set; }
}