a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
21 lines
184 B
C#
21 lines
184 B
C#
// CS0165: Use of unassigned local variable `x'
|
|
// Line: 19
|
|
|
|
struct S
|
|
{
|
|
public object O;
|
|
}
|
|
|
|
class X
|
|
{
|
|
public S s;
|
|
}
|
|
|
|
class C
|
|
{
|
|
public static void Main ()
|
|
{
|
|
X x;
|
|
x.s.O = 2;
|
|
}
|
|
} |