Files
linux-packaging-mono/mcs/errors/cs0170-2.cs

14 lines
158 B
C#
Raw Normal View History

// CS0170: Use of possibly unassigned field `c'
// Line: 11
struct A
{
public long b;
public float c;
public A (int foo)
{
b = (long) c;
c = 1;
}
}