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-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1624-3.cs
blob
4f90c94fb46e176b6726bc55a9afe0bdd6fcd4ff
1
// CS1624: The body of `Program.Program()' cannot be an iterator block because `void' is not an iterator interface type
2
// Line: 6
3
4
class
Program
{
5
public
Program
() {
6
yield break
;
7
}
8
static public void
Main
() {
9
}
10
}