blob: b59cacb87918ba8babdec6967203b136ea335455 [file] [log] [blame]
Jeff Hao3c3911e2017-08-14 15:14:29 -07001Tests how the verifier handles aget on an array that was initially null.
2
3The verifier will flag aget instructions as have_pending_runtime_throw_failure_
4if the array register is potentially null, even if the aget is guarded by null
5checks and never actually null at runtime. This fails compile-time verification,
6preventing otherwise good method from being compiled.