blob: 8c18b45a9d4886b42fbee796a8794c0f00543ea0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// 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 { };
}
}
|