void testMethod1 ( float a[], int b[][] ) {
}

void testMethod2(float a [ ]  , int[ ] b []) {
}

void setup() {
  testMethod1(null, null);
  testMethod2(null, null);
}
