Packages icon indicating copy to clipboard operation
Packages copied to clipboard

Incorrect syntax highlighting in C with GNU Statement Expressions

Open Nemi26 opened this issue 1 year ago • 0 comments

What happened?

Hi, this piece of C code has incorrect syntax highlighting in sublime text

image

struct test {
    int x;
};

int main() {
    struct test* a = ({
        nullptr;
    });

    return 0;
}

Nemi26 avatar Oct 16 '24 15:10 Nemi26