condition tests passes
[mono.git] / mcs / errors / cs0030-3.cs
1 // cs0030-3.cs : Cannot convert type `string' to `char'
2 // Line : 8
3
4 public class Blah {
5
6         public static int Main ()
7         {
8                 char ch = (char)"a";            
9         }
10 }