blob: c1d079ea0f678d2b1920e0345b9f2dcc826f7af1 [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.cf;
public class SynchronizedNoopTest {
public static synchronized void noop() {
System.out.println("Foo");
}
}