blob: 8fac6cbb2eb02933ad35caaf373024f6f4ca048e [file] [log] [blame]
// Copyright (c) 2019, 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.nonnull;
public class NonNullParamAfterInvokeVirtualMain {
public static void main(String[] args) {
NotPinnedClass arg1 = new NotPinnedClass(1);
NotPinnedClass arg2 = new NotPinnedClass(2);
NonNullParamAfterInvokeVirtual instance = new NonNullParamAfterInvokeVirtual();
instance.checkViaCall(arg1, arg2);
instance.checkViaIntrinsic(arg1);
instance.checkAtOneLevelHigher(arg2);
}
}