# File test/test_unified_ruby.rb, line 138
  def test_rewrite_defn_bmethod_alias
    @insert = s(:defn, :group,
                s(:fbody,
                  s(:bmethod,
                    s(:masgn, s(:dasgn_curr, :params)),
                    s(:block,
                      s(:lit, 42)))))
    @expect = s(:defn, :group,
                s(:args, "*params""*params"),
                s(:scope,
                  s(:block, s(:lit, 42))))

    doit
  end