Aer/tests/load_module.aer
belliash 029dd9bfb4
All checks were successful
The build was successful.
Several changes made:
* Do not overload entry point
 * Automatically call Program::__construct()
 * Automatically call Program::main();
 * Fix all tests
2018-08-12 12:52:35 +02:00

8 lines
169 B
Plaintext

final class Program {
function main() {
var_dump(function_exists('dummy_function'));
var_dump(import('dummy'));
var_dump(function_exists('dummy_function'));
}
}