Home | History | Annotate | Download | only in tests
      1 ; This worked under NASM.  Due to the once-parse model used by YASM, this no
      2 ; longer works.  However, it should error, not crash!
      3 teststring db "Hello, world"
      4 teststringlen equ $-teststring
      5 %if teststringlen>100
      6  db '5'
      7 %endif
      8