]> Nishi Git Mirror - gwion.git/commitdiff
:art: Update examples
authorfennecdjay <astor.jeremie@wanadoo.fr>
Thu, 16 May 2019 13:07:38 +0000 (15:07 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Thu, 16 May 2019 13:07:38 +0000 (15:07 +0200)
examples/template_dyn.gw
examples/template_guess.gw

index e5fe155fff92cf8d692704952f1eaf39fcd8a5fe..793907a529971fa847af52cf198899b7cc0ab912 100644 (file)
@@ -9,10 +9,10 @@ class C {
   fun<~A~> int test(A a, int i, int j) { <<<a>>>; }
 }
 class D extends C {
-  fun int<~A~> test(A a, int i) { <<<this, " extent ", a, __func__>>>; }
+  fun<~A~> int test(A a, int i) { <<<this, " extent ", a, __func__>>>; }
 }
 class E extends D {
-  fun int<~A~> test(A a, int i) { <<<this, " Extent ", a, __func__>>>; }
+  fun<~A~> int test(A a, int i) { <<<this, " Extent ", a, __func__>>>; }
 }
 
 
index f68ac1a35da1476f2ae226490ba3d9e0282935e9..26dadbcb52784fa0f9d23e4f7d4a69973f5d76a0 100644 (file)
@@ -1,4 +1,4 @@
-function void<~A,B~> test(A a, B b){<<<a, ", ", b>>>;}
+function <~A,B~> void test(A a, B b){<<<a, ", ", b>>>;}
 test(1, 2.1);
 test(1.1, 2.1);
 test(1.2, 2);