summaryrefslogtreecommitdiff
path: root/test/prism/fixtures/seattlerb/bug_call_arglist_parens.txt
blob: 4f04368802604cf567af47a0f61dfa4f79364104 (plain)
1
2
3
4
5
6
7
8
9
10
11
      def f
        g ( 1), 2
      end


      def f()
        g (1), 2
      end


g ( 1), 2