[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs1629-3.cs
blobf7ceed68c419f0b7964665556bba67e4abc5ee9e
1 // CS1629: Unsafe code may not appear in iterators
2 // Line: 17
3 // Compiler options: -unsafe
5 using System.Collections.Generic;
7 public unsafe class TestClass
9 public struct Foo {
10 public bool C;
13 Foo *current;
15 public IEnumerable<Foo> EnumeratorCurrentEvents ()
17 yield return *current;