kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

attr_unterminated.c (233B)


      1 /* Unterminated __attribute__ clause: missing the second closing paren.
      2  * The parser must reject this rather than swallowing the rest of the
      3  * translation unit. */
      4 int x __attribute__((packed);
      5 
      6 int test_main(void) {
      7   return x;
      8 }