blob: f7823a9660bb50991bc82e2ac2741d92c47b81b9 [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.cf;
public class NestedExceptionTest {
public static void main(String[] args) {
try {
new Integer(1);
} catch (Exception t) {
try {
new Integer(1);
} catch (Exception tInner) {
// This block must be empty
}
}
}
}