Advertisement
Guest User

Untitled

a guest
Aug 5th, 2015
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. class Main
  2. {
  3. int[] ia;
  4. public static void main (String[] a)
  5. {
  6. ia = new int[7];
  7. ia[5] = 6; // <-- problem line
  8. }
  9. }
  10.  
  11. ????
  12. ldc 5
  13. ldc 6
  14. iastore
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement