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