Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs0306-2.cs
1 // CS0306: The type `int*' may not be used as a type argument
2 // Line: 11
3 // Compiler options: -unsafe
4
5 using System.Linq;
6
7 public class C
8 {
9         public static unsafe void Main ()
10         {
11                 var e = from int* a in "aaa"
12                                 select a;
13         }
14 }