We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 897314c commit 6d7a8a7Copy full SHA for 6d7a8a7
ruby/ql/test/library-tests/controlflow/graph/raise.rb
@@ -180,3 +180,23 @@ def m16(b1, b2)
180
return 3
181
end
182
183
+
184
+def m17(b1, b2)
185
+ begin
186
+ raise ExceptionA if b1
187
+ rescue ExceptionA
188
+ if b2
189
+ b1 = false
190
+ retry
191
+ end
192
+end
193
194
+def m18(b2)
195
+ b1 = true
196
197
198
199
200
201
202
0 commit comments