blob: 6fc2ad5563f90bd15782279255f453039a65c54f [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 memberrebinding4;
import memberrebinding4.subpackage.PublicInterface;
public class Test {
static class Inner implements PublicInterface {
}
public static void main(String[] args) {
test();
}
public static void test() {
new Inner().dump();
}
}