blob: 89aab90d2a1b3e32c36b4a87fca14add43774f44 [file] [log] [blame]
import AnotherTransformation;
import root.other.OtherTransformation;
transformation DeployedTransformation();
main() {
var retcode1 := new OtherTransformation().transform();
assert fatal (retcode1.succeeded());
var retcode2 := new AnotherTransformation().transform();
assert fatal (retcode2.succeeded());
}