racket/collects/tests/htdp-lang/pr/12117.rkt
2012-02-29 00:28:11 -05:00

7 lines
107 B
Racket

#lang htdp/bsl
(require racket/match)
(define-struct a (b))
(match (make-a 1)
[(struct a (b)) b]
[#f 3])