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: 0d951588686c67d4d18eae5b4bf29df22502a5f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs01627.cs: Expression expected after yield return
// Line: 10

using System.Collections;

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