Empty character literal
A char was declared and initialized to a null. The initialization of a char must specify a character.
The following sample generates CS1011:
namespace x { abstract public class clx { char b = ''; // CS1011 } }