blob: 0142dba39752b3b8923ff87b82e2dec6566f713a [file] [log] [blame]
// Copyright (c) 2018, the R8 project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
package com.android.tools.r8.debug;
public class BreakAtTryAndCatchTest {
int i = 0;
void foo() {
try { bar(); } catch (RuntimeException e) { baz(); }
baz();
}
int bar() {
if (i++ % 2 == 0) {
System.out.println("bar return " + i);
return i;
}
System.out.println("bar throw " + i);
throw new RuntimeException("" + i);
}
void baz() {
System.out.println("baz");
}
public static void main(String[] args) {
BreakAtTryAndCatchTest test = new BreakAtTryAndCatchTest();
test.foo();
test.foo();
}
}