repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-09-02 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0171-2.cs
blob
a1c0b11e8e86908fe0749e08a11c71fd273023c5
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
event
EventHandler ev
;
9
10
public
S
(
int
i
)
11
{
12
}
13
}