kit

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

attr_06_unused_local.c (200B)


      1 /* __attribute__((unused)) on a local variable. Phase 1 only needs to
      2  * accept the attribute in this position. */
      3 int test_main(void) {
      4   int unused_local __attribute__((unused)) = 42;
      5   return 0;
      6 }