Packages
Packages copied to clipboard
Incorrect syntax highlighting in C with GNU Statement Expressions
What happened?
Hi, this piece of C code has incorrect syntax highlighting in sublime text
struct test {
int x;
};
int main() {
struct test* a = ({
nullptr;
});
return 0;
}