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
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0161-2.cs
blob
f51a90d7424fdef2f8f0333efc9a03ef96f30f4d
1
// cs0161-2.cs: `Test.Main()': not all code paths return a value
2
// Line: 4
3
class
Test
{
4
static int
Main
() {
5
bool
b
=
false
;
6
while
(
true
) {
7
if
(
b
)
8
break
;
9
else
10
break
;
11
}
12
}
13
}
14