# File test/test_parse_tree_extensions.rb, line 29
  def test_proc_to_ruby_args_n
    util_setup_inline
    block = proc { |x| puts x }
    assert_equal 'proc { |x| puts(x) }', block.to_ruby
  end