typed-racket icon indicating copy to clipboard operation
typed-racket copied to clipboard

Typed Racket

Results 172 typed-racket issues
Sort by recently updated
recently updated
newest added

### What version of Racket are you using? 6.9.0.4 ### What program did you run? ``` (:type (All (r #:row) (Instance (Class #:row-var r)))) (:type (All (r #:row) (Object #:row-var...

class

### What version of Racket are you using? `v8.2` ### What program did you run? Program 1: ``` #lang typed/racket (: m0 (MPairof String Null)) (define m0 (mcons "world" '()))...

### What version of Racket are you using? Racket 8.0 [CS] ### What program did you run? I tried loading the following program into Dr. Racket and Racket-Mode: ```scheme #lang...

The `Boxof` type now has two forms: - `(Boxof t)`, a type for boxes that can contain values of type `t`. You can write `t` values into the box with...

in-progress

### What version of Racket are you using? Racket version 8.1 with `typed-racket-lib` version 1.12. ### What program did you run? ```racket #lang typed/racket (module untyped racket (provide (struct-out a)...

bug
unsound
struct

This innocent-looking program triggers 53 type errors. ``` #lang typed/racket/base (require typed/rackunit) (define-simple-check (check-foo? a b) #t) ``` Here they are. . . ``` define-simple-check.rkt:1:0: Type Checker: missing type for...

### What version of Racket are you using? Need TR to be patched by https://github.com/racket/typed-racket/pull/1120 ### What program did you run? ``` > (struct foo () #:property prop:custom-write 10) ```...

### What version of Racket are you using? ``` -> racket --version Welcome to Racket v8.1 [cs]. ``` ### What program did you run? ``` #lang racket (module typed typed/racket/base...

enhancement
struct

Observed: ``` scratch.rkt> (version) - : String "7.8" scratch.rkt> (modulo 256 255) - : Integer [more precisely: Byte] 1 scratch.rkt> (modulo 256 256) - : Integer [more precisely: Index] 0...

bug