This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Description
From @elpixo on April 26, 2018 13:3
Syntax highlighting for C++ classes fails if base classes are declared on next line.
// This is highlighted correctly
class SomeClass : public BaseClass
{
};
// This has no syntax highlight for public BaseClass
class SomeClass
: public BaseClass
{
};
Copied from original issue: microsoft/vscode#48756