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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0177-11.cs
blob
69c03070719ba2d0776f400a68aed1c72f21e720
1
// CS0177: The out parameter `s' must be assigned to before control leaves the current method
2
// Line: 17
3
4
public class
C
5
{
6
}
7
8
public struct
S
9
{
10
public
C c
;
11
}
12
13
public class
Test
14
{
15
void
M
(
out
S s
)
16
{
17
var
xx
=
s
.
c
;
18
}
19
}