A constant function tried to access a nonexistent element of a dynamic array.
localparam int foo = func(); function int func; automatic int i[] = new [2]; return i[4]; // Noncompliant endfunction