boot2

Playing with the boostrap
git clone https://git.ryansepassi.com/git/boot2.git
Log | Files | Refs | README

049-init-scalar-global.c (138B)


      1 // tests/cc-parse/49-init-scalar-global.c — scalar global with constant
      2 // initializer. §E.1.
      3 int g = 42;
      4 int main(void) { return g; }