11 lines
141 B
C#
Raw Normal View History

// CS0030: Cannot convert type `string' to `char'
// Line: 8
public class Blah {
public static int Main ()
{
char ch = (char)"a";
}
}