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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0171-2.cs
blob
47efea0acb669c38a3cf18ec8c042e320f6b150d
1
// CS0171: Field `S.ev' must be fully assigned before control leaves the constructor
2
// Line: 12
3
4
using
System
;
5
6
struct
S
7
{
8
public event
EventHandler ev
;
9
10
public
S
(
int
i
)
11
{
12
}
13
}