]> Nishi Git Mirror - gwion.git/commitdiff
:art: No shadowing in tests
authorJérémie Astor <astor.jeremie@wanadoo.fr>
Tue, 7 Jul 2020 17:15:02 +0000 (19:15 +0200)
committerJérémie Astor <astor.jeremie@wanadoo.fr>
Tue, 7 Jul 2020 17:15:02 +0000 (19:15 +0200)
examples/implicit_ptr.gw
tests/error/lambda_mismatch3.gw
tests/new/class_fptr_returns_fptr.gw
tests/new/lambda2.gw
tests/tree/class_template.gw
tests/tree/f2i_cast.gw

index 139cc991d1b79d7dd2ada078f1fcc55b7f61c359..e1ab8ab528d2d219da41567f70f37ed2867622e5 100644 (file)
@@ -1,4 +1,4 @@
-fun void test(<~int~>Ptr pi) {
-   <<< *pi >>>;
+fun void test(<~int~>Ptr p) {
+   <<< *p >>>;
 }
 int i => test;
index 03e785f0034afcb90f58da8359a57271af36e9e4..572051d69df2ad9a78ae64a823cf6aa5fff5e36e 100644 (file)
@@ -1,7 +1,7 @@
 #! [contains] argument number does not match for lambda
 typedef void ptr_t(int i);
 \a b { <<< a, " ", b >>>; } @=> ptr_t ptr;
-fun void test(ptr_t ptr) {
-  ptr(2);
+fun void test(ptr_t p) {
+  p(2);
 }
 test(ptr);
index 6756a1c7aa388bbdff8300cf0fdbb3d937fb7e1e..19646d19fac63d73a7e302fa37667677e3343232 100644 (file)
@@ -1,5 +1,5 @@
 class C {
-int i;
+int m_i;
   typedef void t_fptr0();
   typedef void t_fptr1(int i);
   fun void test() { <<< this , " ", __func__ >>>;}
index 7414ab6cf861e4315bc9c005b64329999b956f59..5597c94e1b5d140d05b9a04f1fea4c9410546fca 100644 (file)
@@ -3,9 +3,9 @@ typedef void ptr_t(int i);
 \a { <<< this, " ", a >>>; } @=> ptr_t ptr;
 #!ptr(3);
 fun void t1(int i) { <<< this, " t1 ", i >>>; }
-fun void test(ptr_t ptr) {
+fun void test(ptr_t p) {
 <<< this >>>;
- ptr(1);
+ p(1);
 }
 t1 @=> ptr_t t1p;
 #!test(t1$ptr_t);
index 6b10dd70585945de2ede991de64c39acdf87e5b9..ea5523553bb95486b13c23a3562a99483d0c3258 100644 (file)
@@ -4,8 +4,8 @@ class<~A,B~> C {
   fun A test() {
     <<< "lol" >>>;
   }
-  fun void test2<~C~>(C c) {
-    <<< c >>>;
+  fun void test2<~C~>(C o) {
+    <<< o >>>;
   }
 }
 
index a6ec6d6a6020cac2b4f6bc50bc19d72801111712..6dedfaaa3b4b070fc8a9886ee32f44a683fb97bc 100644 (file)
@@ -1,5 +1,5 @@
 <<< "test" >>>;
 <<<  2.3 $ int  >>>;
 1 => float f;
-fun void test(float f){}
+fun void test(float _f){}
 1 => test;