diff options
Diffstat (limited to 'lib/runtime_tools/test/inviso_testmodule1_foo.erl')
-rw-r--r-- | lib/runtime_tools/test/inviso_testmodule1_foo.erl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/lib/runtime_tools/test/inviso_testmodule1_foo.erl b/lib/runtime_tools/test/inviso_testmodule1_foo.erl new file mode 100644 index 0000000000..a7a22cad39 --- /dev/null +++ b/lib/runtime_tools/test/inviso_testmodule1_foo.erl @@ -0,0 +1,9 @@ +-module(inviso_testmodule1_foo). + +-compile(export_all). + +%% The purpose of this module is simply to have a module that is +%% guaranteed not loaded. + +foo() -> + true. |