consulo / consulo-csharp

Languages: C#
Apache License 2.0
50 stars 6 forks source link

Parsing error with type cast inside case statement #560

Closed VISTALL closed 3 years ago

VISTALL commented 3 years ago
switch(label)
{
    case (short) TestEnum.A:
          break;
}