I broke this test; I am not sure why it worked in the first place -- to be checked

This commit is contained in:
Matthias Felleisen 2014-08-01 21:42:39 -04:00
parent 42426272c2
commit 6782f7a85f

View File

@ -1,6 +1,5 @@
#lang htdp/bsl
#lang htdp/asl
(require racket/match)
(define-struct a (b))
(match (make-a 1)
[(struct a (b)) b]
[#f 3])
(match (make-a 1) [(struct a (b)) b] [#f 3])