blob: 8aab7fe18479f998493ff16b5318dec2efe91091 [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.nonnull;
public class NonNullAfterInvoke {
public static int foo(String arg) {
arg.toString();
if (arg == null) {
throw new AssertionError("arg is not null.");
}
return arg.hashCode();
}
public static int bar(String arg) {
try {
arg.toString();
if (arg == null) {
throw new AssertionError("arg is not null.");
}
} catch (NullPointerException npe) {
// Intentionally left blank
}
// As NPE is caught above, arg could be null.
return arg.hashCode();
}
public static void main(String[] args) {
foo("non-null");
bar("non-null");
}
}