2004-02-04 Marek Safar <marek.safar@seznam.cz>
[mono.git] / mcs / errors / cs8205.cs
1 // cs8205.cs: A method that contains a yield statement does have an incorrect return type
2 // Line: 
3 using System;
4 using System.Collections;
5 class X {
6         int Iterator ()
7         {
8                 yield 1;
9         }
10
11         static void Main ()
12         {
13         }
14 }