1 // CS0019: Operator `+' cannot be applied to operands of type `string' and `float*'
3 // Compiler options: -unsafe
7 public static void Main () {
8 float [] floats
= new float[1];
11 fixed (float *fp
= &floats
[0]) {
12 Console
.WriteLine ("foo" + fp
);