2020-05-22 22:08:37 +02:00
|
|
|
use test1 from Tests;
|
|
|
|
use test2 as test3 from Tests;
|
|
|
|
|
|
|
|
lib Main {
|
|
|
|
class Program {
|
|
|
|
func Main(args: list): void {
|
2020-05-25 16:36:44 +02:00
|
|
|
var test_a: test1 = test1();
|
2020-05-22 22:08:37 +02:00
|
|
|
test_a.dec_vars();
|
|
|
|
test_a.is_error();
|
|
|
|
if (!error) {
|
2020-05-25 16:36:44 +02:00
|
|
|
var test_b: test3 = test3();
|
2020-05-22 22:08:37 +02:00
|
|
|
test3.continue();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|