Fix failing test in subtemplate

This commit is contained in:
Suzanne Soy 2021-04-04 05:21:17 +01:00
parent 5ea3b5388f
commit 9993855ab5

9
test/test-8-0.rkt Normal file
View File

@ -0,0 +1,9 @@
#lang racket/base
(require (only-in syntax/parse/experimental/template ?? template)
(only-in syntax/parse #;syntax-parse #;attribute)
(only-in "../parse.rkt" syntax-parse ~optional nat))
(syntax-parse #'(#:kw)
[({~optional z:nat} _)
(template (x (?? z) y))])