blob: da3c26bed3fefeed37490fdc5ba35b48b8e9fd10 [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.Keep;
import com.android.tools.r8.NeverInline;
@Keep
public class KeptByAnnotatedClassTest {
public static void main(String[] args) {
bar();
}
@NeverInline
static void bar() {
System.out.println("called bar");
}
@NeverInline
static void baz() {
System.out.println("called baz");
}
}