Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1629-2.cs
1 // CS1629: Unsafe code may not appear in iterators
2 // Line: 8
3 // Compiler options: -unsafe
4
5 using System.Collections;
6
7 class X {
8         static IEnumerator GetIt ()
9         {
10             unsafe {
11                 yield return 1;
12             }
13         }
14         
15 }