blob: 6d22b1672534b0e2c076a0d2948c41a7417fa9af [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.ir.optimize.classinliner.trivial;
import com.android.tools.r8.NoMethodStaticizing;
public class CycleReferenceBA {
private String a;
public CycleReferenceBA(String a) {
this.a = a;
}
@NoMethodStaticizing
public void foo(int depth) {
CycleReferenceAB ab = new CycleReferenceAB("depth=" + depth);
System.out.println("CycleReferenceBA::foo(" + depth + ")");
if (depth > 0) {
ab.foo(depth - 1);
}
}
@Override
public String toString() {
return "CycleReferenceBA(" + a + ")";
}
}