class Stuff
{
constint[] p = {};
}
class Program
{
static void Main()
{
}
}
All following code highlighted as error and intellisense does not work.
Should be highlighted only bad initializer. Show message a kind of: 'A const of reference type other than string can only be initialized with null'
Description
class Stuff
{
constint[] p = {};
}
class Program
{
static void Main()
{
}
}
All following code highlighted as error and intellisense does not work.
Should be highlighted only bad initializer. Show message a kind of: 'A const of reference type other than string can only be initialized with null'