Skip to content
Snippets Groups Projects
Commit 6213fa8b authored by Gary Frost's avatar Gary Frost
Browse files

Added to evaluate 2D array accesses which fail at codegen time.

parent 656ed265
No related branches found
No related tags found
No related merge requests found
package com.amd.aparapi.test;
public class AccessNested2DIntArray{
int[] indices = new int[1024];
int[][] ints = new int[1024][];
public void run() {
int value= ints[indices[0]][0];
}
}
/**{Throws{ClassParseException}Throws}**/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment