Merge all static runtime libs into libmono-static.
[mono.git] / mcs / errors / cs0030-6.cs
1 // CS0030: Cannot convert type `System.DateTime' to `string'
2 // Line: 10
3
4 using System;
5
6 public class Blah
7 {
8         public static void Main ()
9         {
10                 string s = (string)DateTime.Now;
11         }
12 }