a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
14 lines
158 B
C#
14 lines
158 B
C#
// 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;
|
|
}
|
|
} |