Skip to content
Snippets Groups Projects
test.mcc 175 B
Newer Older
Clemens Paumgarten's avatar
Clemens Paumgarten committed
int main() {
    int[10] a;
    int[5] b;
    int c;
    int d;
    int e;
    int[15] f;

    c = 10;
    d = 5;

    e = c + d; /* Legal */
Clemens Paumgarten's avatar
Clemens Paumgarten committed

    return 0;
}