From: fennecdjay Date: Wed, 9 Oct 2019 18:32:22 +0000 (+0200) Subject: :white_check_mark: test class templating X-Git-Tag: nightly~2198^2~78 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=3a6f379a25e2beefc21f8355513d4b6ace53a7c9;p=gwion.git :white_check_mark: test class templating --- diff --git a/tests/new/template_class_in_template.gw b/tests/new/template_class_in_template.gw new file mode 100644 index 00000000..0b2cade1 --- /dev/null +++ b/tests/new/template_class_in_template.gw @@ -0,0 +1,8 @@ +class <~A~>Parent { + class <~B~>C { + 12 => A a; + 13 => B B; + } +} +<~int, int~>Parent->C c; +<<< c.a >>>;