saltwater 0.11.0

A C compiler written in Rust, with a focus on good error messages.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// compile-fail
// https://github.com/jyn514/rcc/issues/244

struct S {
    int x, y, z;
};

int main() {
    struct S s;
    struct S ss;
    s &= ss;
}