1 // Copyright 2020 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 /** 6 * Add a snippet of code here that you want to test the optimization of. 7 */ 8 public class Playground 9 { main(String[] args)10 public static void main(String[] args) 11 { 12 System.out.println("Your test here"); 13 } 14 ensureSideEffects()15 private static native boolean ensureSideEffects(); 16 } 17