blob: 5992eff791fe4a603d302060414e89b386e42844 [file] [log] [blame]
// Copyright (c) 2019, 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.shaking.keptgraph;
import com.android.tools.r8.NeverInline;
public class RemovedClassTest {
public static class RemovedInnerClass {}
public static void main(String[] args) {
bar();
}
@NeverInline
public static void bar() {
System.out.println("called bar");
}
@NeverInline
public static void baz() {
System.out.println("called baz, created " + new RemovedClassTest().getClass().getSimpleName());
}
}