blob: 6a378c9ab61742e9f82f0f0c3961ea5924e10f0e [file] [log] [blame]
// Copyright (c) 2017, 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.classes;
public class Minified {
private static class Inner {
public static int innerTest() {
System.out.println("innerTest");
return 0;
}
}
private static void test() {
System.out.println("test");
Inner.innerTest();
}
private static void test(int i) {
System.out.println("test" + i);
}
public static void main(String[] args) {
test();
}
}