bad-srfi-109.scm 619 B

123456789101112131415161718192021
  1. (define x1 &{ab&|z})
  2. ;; Diagnostic: bad-srfi-109.scm:1:16: invalid '&|'
  3. (define x2 &{a
  4. bc&|z})
  5. ;; Diagnostic: bad-srfi-109.scm:5:3: non-whitespace before '&|'
  6. (define x3 &{a&)z}) ;; Poor error message - not expecting '{' here. FIXME.
  7. ;; Diagnostic: bad-srfi-109.scm:8:16: expected '[', '{', or ';'
  8. (define x5 &{ab&- x
  9. yx})
  10. ;; Diagnostic: bad-srfi-109.scm:11:20: non-whitespace after '&-'
  11. ;; The following are emitted later, during name-looking,
  12. ;; so to avoid ordering problems they should be later in this file.
  13. (define y1 &{a&klmnqz;z})
  14. ;; Diagnostic: bad-srfi-109.scm:18:15: unknown entity name klmnqz