!include once #1034831 // Gazelle 22 Function Include for Testing

scope test_leftArrowScript_comma

svoid test_leftArrowScript_comma() {
  new TestFunctionValues<S, O>(l1 leftArrowVerbose)
    .io([[ new Pair 1 2, a ]], 1)
    
    // dangling comma!
    .io([[ new Pair 1 2,
             a ]], 1)
    .run();
  
}