1 // Compiler options: -unsafe
4 using System
.Reflection
;
9 public static void Test ()
13 fixed (char *chars
= s
) {
18 public static int Main ()
22 var m
= typeof (Program
).GetMethod ("Test");
23 var lv
= m
.GetMethodBody ().LocalVariables
.Where (l
=> l
.LocalType
== typeof (char*)).Single ();