a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
20 lines
195 B
C#
20 lines
195 B
C#
// CS0170: Use of possibly unassigned field `a'
|
|
// Line: 17
|
|
|
|
using System;
|
|
|
|
public struct S
|
|
{
|
|
public Action a;
|
|
}
|
|
|
|
|
|
public class Test
|
|
{
|
|
static void Main ()
|
|
{
|
|
S s;
|
|
s.a += delegate { };
|
|
}
|
|
}
|