Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1627.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 61a418f751ee271a46783d0500d7d3c96ba5799f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS01627: Expression expected after yield return
// Line: 10

using System.Collections;

class C: IEnumerable
{
   public IEnumerator GetEnumerator ()
   {
	   yield return;
   }
}