Type: LanguageService
Describe the bug
*/* is captured as end of block comment instead of asterisk followed by start of block comment.To Reproduce
Write in an open cpp file:
void */*comment*/ var;
Expected behavior
The comment should be identified and colored correctly.
Screenshots

Our extension doesn't actually provide the colorization. It is implemented in VS Code itself via using the atom/language-c module. I've created a bug at https://github.com/atom/language-c/issues/315 .
This appear to be fixed with the latest VS Code. Let us know if you're still seeing it.
Oh, the fix hasn't been ported to Insiders yet -- you can install the Better C++ Syntax extension for that fix. I'll close this after the fix gets moved.
This looks to be fixed in VS Code.
Sorry for the late reply, but this issue seems to still be relevant. This is the info of my current setup:
Version: 1.36.1 (user setup)
Commit: 2213894ea0415ee8c85c5eea0d0ff81ecc191529
Date: 2019-07-08T22:59:35.033Z
Electron: 4.2.5
Chrome: 69.0.3497.128
Node.js: 10.11.0
V8: 6.9.427.31-electron.0
OS: Windows_NT x64 10.0.17134
This is what I see:

@dan1994 This is because with VS Code 1.36.1 The C syntax was rolled back to an earlier version of the upstream textmate grammar. Installing the previously mentioned Better C++ Syntax extension should fix the issue.

This seems to solve the problem. Thank you!
I do want to ask out of curiosity: Is it not desired that the coloring will work correctly without relying on other plugins?
Better C++ Syntax is the same grammar that VS Code uses for C and C++ syntax highlighting. The extensions is just the latest version of the grammar.
To my understanding the syntax coloring Iv'e seen comes from either the cpptools extension or VS code itself. Why then, are there two different coloring schemes? Why is the coloring in Better C++ Syntax not integrated into VS Code/cpptools? Or, from a different perspective, why do I get syntax coloring w/o installing the Better C++ Syntax if that's the extension that should be responsible for it.
Sorry if my questions are out of place, I truly just seek to understand.
VS Code bundles an older version of Better C++ Syntax, see https://github.com/microsoft/vscode/blob/1.36.1/extensions/cpp/cgmanifest.json#L8. The version bundled has the above bug.
The C/C++ extensions adds its own enhanced colorization on top of the syntax highlighting provided.
Thanks for the clarification 馃憤