nedpals/errgoengine

[ERROR TEMPLATE] Java - Array required, but <type> found

Closed this issue · 0 comments

Name Type Code Language
Array required, but found Compile-time Error java.lang.ArrayRequiredError Java

Description

An array was expected, but a different type was found in the code.

Sample Code

public class NotArray {
    public static void main(String[] args) {
        int number = 5;
        int value = number[0];
    }
}

Sample Error Message

NotArray.java:4: error: array required, but int found
        int value = number[0];
                            ^
1 error

Implementation Checklist

  • Implemented analysis
  • Implemented explanation translation
  • Implemented bug fix generation
  • Add tests