(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs0019-7.cs
bloba18964f4d9222565b29f91ef8c2f1f807d9c8df7
1 // cs0019.cs: Can not apply operator + between string and float *
2 // Line: 12
3 // Compiler options: -unsafe
4 using System;
6 public class Driver {
7 public static void Main () {
8 float [] floats = new float[1];
9 floats[0] = 1.0f;
10 unsafe {
11 fixed (float *fp = &floats[0]) {
12 Console.WriteLine ("foo" + fp);