summaryrefslogtreecommitdiff
path: root/test/prism/fixtures/yield.txt
blob: 752ba27a2e67f4fdad61c7a9db3b5c430a20166e (plain)
1
2
3
4
5
6
7
def foo; yield; end

def foo; yield(); end

def foo; yield(1); end

def foo; yield(1, 2, 3); end