Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0030-11.cs
1 // CS0030: Cannot convert type `string' to `IA'
2 // Line: 13
3
4 interface IA
5 {
6 }
7
8 class MainClass
9 {
10         public static void Main ()
11         {
12                 string s = "s";
13                 IA i = (IA) s;
14         }
15 }