Too many characters in character literal
An attempt was made to initialize a char constant with more than one character.
The following sample generates CS1012:
namespace x { public class b : c { char a = 'xx'; // CS1012 public static void Main() { } } }