blob: 7a6a3ed2ec39d966cd3c18b70b0d2b336fea2fb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// CS1629: Unsafe code may not appear in iterators
// Line: 8
// Compiler options: -unsafe
using System.Collections;
class X {
static unsafe IEnumerator GetIt ()
{
yield return 1;
}
}
|