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
/
cs0127.cs
blob
77e7224fec8f7acc7ebf96ea9697d637ae008fab
1
// CS0127: `X.fn()': A return keyword must not be followed by any expression when method returns void
2
// Line: 6
3
4
class
X
{
5
void
fn
()
6
{
7
return
1
;
8
}
9
}
10