0
public class uhh {

public static void main(String[] args){
    //boolean[][] tester = { {false}, {true} };
    //testMethod( tester );

    testMethod(  {{false}, {true}}  );
}


public static void testMethod( boolean[][] testing) {
    System.out.println(testing);
}   

}

The commented out code runs, but the uncommented code creates the error: "Syntax error on token "testMethod", @ expected before this token"

Why is one working if the other one is going wrong? They seem identical to me.

Neo
  • 397
  • 1
  • 4
  • 15

0 Answers0