Explorar el Código

* const to var not detected

peter hace 24 años
padre
commit
d388f3ea46
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  1. 13 0
      tests/tbf/tb0106.pp

+ 13 - 0
tests/tbf/tb0106.pp

@@ -0,0 +1,13 @@
+{ %fail }
+
+procedure ld_var(var a);
+begin
+end;
+
+procedure ld_const(const b);
+begin
+  ld_var(b);
+end;
+
+begin
+end.