blob: 5ba97dc32927e36a064df323f0bd308e7688030f [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.staticizer.trivial;
public class SimpleWithSideEffects {
static SimpleWithSideEffects INSTANCE = new SimpleWithSideEffects();
static {
System.out.println("SimpleWithSideEffects::<clinit>()");
}
String foo() {
synchronized ("") {
return bar("SimpleWithSideEffects::foo()");
}
}
String bar(String other) {
synchronized ("") {
return "SimpleWithSideEffects::bar(" + other + ")";
}
}
}