]> Nishi Git Mirror - gwion.git/commitdiff
:bug: Fix compilation and tests
authorJérémie Astor <fennecdjay@gmail.com>
Fri, 15 Apr 2022 13:58:15 +0000 (15:58 +0200)
committerJérémie Astor <fennecdjay@gmail.com>
Fri, 15 Apr 2022 13:58:15 +0000 (15:58 +0200)
src/parse/check.c
tests/error/invalid_array_acces.gw
tests/error/template_not_able.gw

index 4db1f8d16a2b51c8719d8b7b6692364c63773a08..53987aeed48d15d77ff9c39cea1e7368f84d5db2 100644 (file)
@@ -667,7 +667,7 @@ ANN static Func get_template_func(const Env env, Exp_Call *const func,
   ((Exp_Call *)func)->tmpl = NULL;
   assert(exp_self(func));
   ERR_O(exp_self(func)->pos,
-        _("function is a template for which automatic type inference is not fully implemented"
+        _("function is a template for which automatic type inference is not fully implemented"));
 }
 
 ANN static Func predefined_func(const Env env, const Value v, Exp_Call *exp,
index bb466857fbd03db9ae4b2130ca5f78dd3c7d3c02..a705f09a84c6e07d1b62a2cfbbb061f2592e6732 100644 (file)
@@ -1,3 +1,3 @@
-#! [contains] invalid array acces expression
+#! [contains] invalid array access expression
 var int j[];
 j[1,2,3,4] => i;
index 247b2faab3dab28d2cc88abd9cf86c55d04d7f17..a5fadc29341a146e1a4f38296e64e7a8aef0a12d 100644 (file)
@@ -1,3 +1,3 @@
-#! [contains] not able to guess types for template call
+#! [contains] not able to infer types for template call
 fun void test:[A,B](A a) {}
 test(1);