boot2

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

19-zext-narrow.c (171B)


      1 // tests/cc-parse/19-zext-narrow.c — unsigned narrowing zero-extends.
      2 // §A.5 of docs/CC-PUNCHLIST.md.
      3 
      4 int main() {
      5     return ((unsigned)(unsigned char)-3) == 253;
      6 }