GAMS [ Home | Support | Sales | Solvers | Documentation | Model Library | Search | Contact Us ]

put7.gms : Test bad $on/offput in if statement


Contributor: Alex

Small Model of Type: GAMS
$title 'Test bad $on/offput in if statement' (PUT7,SEQ=314) $ontext Contributor: Alex $offtext file f / temp.txt /; putclose f 'garbage' ; if(1, $onput this is true $offput else $onput this is false $offput ); putclose; execute '=grep false temp.txt'; abort$(errorlevel=0) 'should not be there';