kit

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

attr_p2_alias_unresolved.c (217B)


      1 /* Phase 2: alias("target") with no prior declaration of `target` in the
      2  * same TU must be diagnosed at finalize. */
      3 int foo(void) __attribute__((alias("nonexistent_target")));
      4 
      5 int test_main(void) { return foo(); }