From: fennecdjay Date: Fri, 19 Jul 2019 13:05:56 +0000 (+0200) Subject: :white_check_mark: Better tmpl test X-Git-Tag: nightly~2319 X-Git-Url: http://10.10.0.4:5575/?a=commitdiff_plain;h=c4ddd84e411c8f5cd13c9c6c8b6f79bbfbc475a5;p=gwion.git :white_check_mark: Better tmpl test --- diff --git a/tests/error/typedef_func_tmpl_types.gw b/tests/error/typedef_func_tmpl_types.gw index 71aa91d9..39d29bdd 100644 --- a/tests/error/typedef_func_tmpl_types.gw +++ b/tests/error/typedef_func_tmpl_types.gw @@ -4,7 +4,8 @@ typedef void t_ptr<~A~>(); <~int~>t_ptr iptr; fun void test<~A~>() { - <<< __func__ >>>; + A a; + <<< __func__, " ", a>>>; } test @=> iptr;