[svn:parrot] r47613 - trunk/t/pir

plobsing at svn.parrot.org plobsing at svn.parrot.org
Mon Jun 14 00:28:56 UTC 2010


Author: plobsing
Date: Mon Jun 14 00:28:55 2010
New Revision: 47613
URL: https://trac.parrot.org/parrot/changeset/47613

Log:
refer to correct x in macro. also remove incorrect x.

Modified:
   trunk/t/pir/macro.t

Modified: trunk/t/pir/macro.t
==============================================================================
--- trunk/t/pir/macro.t	Sun Jun 13 23:43:30 2010	(r47612)
+++ trunk/t/pir/macro.t	Mon Jun 14 00:28:55 2010	(r47613)
@@ -21,14 +21,13 @@
 .endm
 
 .macro bar(x)
-    ok(x, 'basic macro with argument')
+    ok(.x, 'basic macro with argument')
 .endm
 
 .macro_const PI_APPROX 4
 
 .sub main :main
     .include 'test_more.pir'
-    .local int x
     plan(3)
     .foo()
     .bar(42)


More information about the parrot-commits mailing list