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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0177.cs
blob
0aaa52299d6bfe14ebd7659b3417b1604ba80bdc
1
// cs0177.cs: The out parameter `display' must be assigned to before control leaves the current method
2
// Line: 5
3
4
class
ClassMain
{
5
void
Error
(
out bool
display
) {
6
}
7
8
public static void
Main
() {
9
}
10
}
11