blob: 0101a64f81698b6e342fac99adeddb48e17f1881 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// CS0306: The type `int*' may not be used as a type argument
// Line: 11
// Compiler options: -unsafe
using System.Linq;
public class C
{
public static unsafe void Main ()
{
var e = from int* a in "aaa"
select a;
}
}
|