commit 9993855ab57119e316fa3516cf72cb3dfd070c46 parent 5ea3b5388fbe1fe9263ef1181c0a2d5f531bdfba Author: Suzanne Soy <ligo@suzanne.soy> Date: Sun, 4 Apr 2021 05:21:17 +0100 Fix failing test in subtemplate Diffstat:
| A | test/test-8-0.rkt | | | 10 | ++++++++++ |
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/test/test-8-0.rkt b/test/test-8-0.rkt @@ -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))]) +\ No newline at end of file