summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-compiler/bintest
diff options
context:
space:
mode:
authorBouke van der Bijl <[email protected]>2016-11-28 13:37:20 -0500
committerBouke van der Bijl <[email protected]>2016-11-29 09:23:53 -0500
commit523c267020787c3545bd72f27362cf8727372c0d (patch)
tree517b0273a17f9d222dc74954cb6152eeeef78b8f /mrbgems/mruby-compiler/bintest
parent246a9a8acd4e45a184ffd11bdd92a5b7736bf1cd (diff)
downloadmruby-523c267020787c3545bd72f27362cf8727372c0d.tar.gz
mruby-523c267020787c3545bd72f27362cf8727372c0d.zip
Interpret argument in 'f ()' as nil instead of nothing
Diffstat (limited to 'mrbgems/mruby-compiler/bintest')
-rw-r--r--mrbgems/mruby-compiler/bintest/mrbc.rb9
1 files changed, 9 insertions, 0 deletions
diff --git a/mrbgems/mruby-compiler/bintest/mrbc.rb b/mrbgems/mruby-compiler/bintest/mrbc.rb
index e4dc6a9a8..e27365edb 100644
--- a/mrbgems/mruby-compiler/bintest/mrbc.rb
+++ b/mrbgems/mruby-compiler/bintest/mrbc.rb
@@ -10,3 +10,12 @@ assert('Compiling multiple files without new line in last line. #2361') do
assert_equal "#{cmd('mrbc')}:#{a.path}:Syntax OK", result.chomp
assert_equal 0, $?.exitstatus
end
+
+assert('parsing function with void argument') do
+ a, out = Tempfile.new('a.rb'), Tempfile.new('out.mrb')
+ a.write('f ()')
+ a.flush
+ result = `#{cmd('mrbc')} -c -o #{out.path} #{a.path} 2>&1`
+ assert_equal "#{cmd('mrbc')}:#{a.path}:Syntax OK", result.chomp
+ assert_equal 0, $?.exitstatus
+end