diff options
author | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-09-25 19:40:08 +0000 |
---|---|---|
committer | Otto Moerbeek <otto@cvs.openbsd.org> | 2003-09-25 19:40:08 +0000 |
commit | c256bbfffb3c2e058b5ca42600e9a58e685f9291 (patch) | |
tree | 5829be078af1ba373a6742b55a9f99383a43e684 /regress/usr.bin/bc/t5.in | |
parent | e9850d76124894fe91666de6cc13715ebaed1083 (diff) |
A set of regression tests for bc(1).
Diffstat (limited to 'regress/usr.bin/bc/t5.in')
-rw-r--r-- | regress/usr.bin/bc/t5.in | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/regress/usr.bin/bc/t5.in b/regress/usr.bin/bc/t5.in new file mode 100644 index 00000000000..c02b1b6c5e7 --- /dev/null +++ b/regress/usr.bin/bc/t5.in @@ -0,0 +1,7 @@ +define f(a, b, c[]) { + auto d,e,f; + a=1; + return (8); +} + +f(1,2,g[]) |