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

cs0170-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 911ebee02167770500290c50d38f25da55e6841e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0170: Use of possibly unassigned field `c'
// Line: 11

struct A
{
	private long b;
	private float c;

	public A (int foo)
	{
		b = (long) c;
		c = 1;
	}
}