repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0170-4.cs
blob
8c18b45a9d4886b42fbee796a8794c0f00543ea0
1
// CS0170: Use of possibly unassigned field `a'
2
// Line: 17
3
4
using
System
;
5
6
public struct
S
7
{
8
public
Action a
;
9
}
10
11
12
public class
Test
13
{
14
static void
Main
()
15
{
16
S s
;
17
s
.
a
+=
delegate
{ }
;
18
}
19
}