You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
59 lines
1.3 KiB
59 lines
1.3 KiB
/*
|
|
* Copyright (c) 2017 - present Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
package genrule.module2;
|
|
|
|
import genrule.annotations.Nullable;
|
|
import genrule.module1.Class1;
|
|
import genrule.module1.SkipImplementationClass1;
|
|
|
|
public class Class2 {
|
|
|
|
@Nullable Object field2;
|
|
|
|
void localNPE2Bad() {
|
|
Object obj = null;
|
|
obj.toString();
|
|
}
|
|
|
|
void interTargetNPEBad() {
|
|
Object obj = Class1.returnsNull();
|
|
obj.toString();
|
|
}
|
|
|
|
void interTargetAbstractNPEBad(Class1 class1) {
|
|
Object obj = class1.abstractMayReturnNull();
|
|
obj.toString();
|
|
}
|
|
|
|
void interTargetNativeNPEBad(Class1 class1) {
|
|
Object obj = class1.nativeMayReturnNull();
|
|
obj.toString();
|
|
}
|
|
|
|
void followMethodDeclarationOnlyBad(SkipImplementationClass1 obj1) {
|
|
Object obj2 = obj1.annotatedNullable();
|
|
obj2.toString();
|
|
}
|
|
|
|
void followMethodDeclarationOnlyOk(SkipImplementationClass1 obj1) {
|
|
Object obj2 = obj1.notAnnotatedNullable();
|
|
obj2.toString();
|
|
}
|
|
|
|
void dereferenceLocalNullableFieldBad() {
|
|
field2.toString();
|
|
}
|
|
|
|
void dereferenceInterTargetFieldBad(Class1 class1) {
|
|
class1.field1.toString();
|
|
}
|
|
|
|
}
|