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

Added a testcase to catch 2d array accesses. Throws NPE in KernelWriter.

parent c6c6e449
No related branches found
No related tags found
No related merge requests found
package com.amd.aparapi.test;
public class Access2DIntArray{
int[][] ints = new int[1024][];
public void run() {
for (int i = 0; i < 1024; i++) {
ints[i][0] = 1;
}
}
}
/**{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