REQUIRE "system.a4l"; REQUIRE "basemodel.a4l"; IMPORT "test/blackbox/bboxtest"; (* yi = coef*xi test *) (* incorrect data arg check -- tests bbox, not ascend.*) MODEL fail2; coef IS_A real_constant; n IS_A integer_constant; n :== 3; coef :== 1.0; x[1..n], y[1..n] IS_A generic_real; bbox: bboxtest( x[1..n] : INPUT ; y[1..n] : OUTPUT ; x[1] : DATA); END fail2;