2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1624-3.cs
blob4f90c94fb46e176b6726bc55a9afe0bdd6fcd4ff
1 // CS1624: The body of `Program.Program()' cannot be an iterator block because `void' is not an iterator interface type
2 // Line: 6
4 class Program {
5 public Program() {
6 yield break;
8 static public void Main() {