summaryrefslogtreecommitdiff
path: root/test/prism/fixtures/whitequark/ruby_bug_12402.txt
blob: 060d5d95a16abcd68bcfaf619fd55a7b15a68d7b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
foo += raise bar rescue nil

foo += raise(bar) rescue nil

foo = raise bar rescue nil

foo = raise(bar) rescue nil

foo.C += raise bar rescue nil

foo.C += raise(bar) rescue nil

foo.m += raise bar rescue nil

foo.m += raise(bar) rescue nil

foo::C ||= raise bar rescue nil

foo::C ||= raise(bar) rescue nil

foo::m += raise bar rescue nil

foo::m += raise(bar) rescue nil

foo[0] += raise bar rescue nil

foo[0] += raise(bar) rescue nil