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.

36 lines
577 B

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
package codetoanalyze.java.tracing;
import com.facebook.infer.annotation.Verify;
class S extends T2 {}
public class ClassCastExceptionExample {
S cast(T2 t) {
return (S) t;
}
void foo() {
T2 t = new T2();
S s = cast(t);
s.toString();
}
T2 m;
@Verify
public S bar(int x) {
if (x < 4 && m != null) {
return (S) m;
}
return null;
}
}