w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0030-11.cs
blob4a8d1fd5527d3bb809d607f046797bee764b137a
1 // CS0030: Cannot convert type `string' to `IA'
2 // Line: 13
4 interface IA
8 class MainClass
10 public static void Main ()
12 string s = "s";
13 IA i = (IA) s;