
Possibly a better long-term solution (for after the release) is to not use the ignore property here and instead just use the ignore table.
9 lines
149 B
Racket
9 lines
149 B
Racket
#lang racket/load
|
|
|
|
;; A test for GH issue #220
|
|
|
|
(require typed/racket)
|
|
|
|
(class object% (super-new) (+ 1 "foo"))
|
|
(unit (import) (export) (+ 1 "foo"))
|