aboutsummaryrefslogtreecommitdiffstats
path: root/test-files/mds-kbdc/compile-layout/valid/return
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-12-10 15:11:41 +0100
committerMattias Andrée <maandree@operamail.com>2014-12-10 15:11:41 +0100
commitb352b77ea31a112a7354edf0100e2c25599aed54 (patch)
treecab5fbbeaaf66fef61103676043eb1f7ab20f191 /test-files/mds-kbdc/compile-layout/valid/return
parentadd xmemdup macro (diff)
downloadmds-b352b77ea31a112a7354edf0100e2c25599aed54.tar.gz
mds-b352b77ea31a112a7354edf0100e2c25599aed54.tar.bz2
mds-b352b77ea31a112a7354edf0100e2c25599aed54.tar.xz
mds-kbdc: compile-layout: test return
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'test-files/mds-kbdc/compile-layout/valid/return')
-rw-r--r--test-files/mds-kbdc/compile-layout/valid/return24
1 files changed, 24 insertions, 0 deletions
diff --git a/test-files/mds-kbdc/compile-layout/valid/return b/test-files/mds-kbdc/compile-layout/valid/return
new file mode 100644
index 0000000..9a052cc
--- /dev/null
+++ b/test-files/mds-kbdc/compile-layout/valid/return
@@ -0,0 +1,24 @@
+function f/0
+ "a"
+ if 1
+ return
+ end if
+ 0
+end function
+function g/0
+ "a"
+ if 1
+ "b"
+ return
+ end if
+ 0
+end function
+macro m/0
+ "\f()" : "\g()"
+ if 1
+ return
+ end if
+ "" : 0
+end macro
+m()
+