boot2

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

18-sext-narrow.c (164B)


      1 // tests/cc-parse/18-sext-narrow.c — signed narrowing keeps sign on
      2 // re-widen. §A.4 of docs/CC-PUNCHLIST.md.
      3 
      4 int main() {
      5     return ((int)(char)-3) == -3;
      6 }