for "build" config, import corlib common sources at unix instead (#11989)
[mono-project.git] / mcs / errors / cs4012-2.cs
blob206c89aee27f87dff2120ed3e6415ac044c82203
1 // CS4012: Parameters or local variables of type `System.TypedReference' cannot be declared in async methods or iterators
2 // Line: 9
4 using System;
5 using System.Collections;
7 class C
9 public IEnumerable Iter ()
11 int i = 2;
12 TypedReference tr = __makeref (i);
13 yield return 1;