diff options
Diffstat (limited to 'test/example_packages/makefile_complex/app/main.f90')
-rw-r--r-- | test/example_packages/makefile_complex/app/main.f90 | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/example_packages/makefile_complex/app/main.f90 b/test/example_packages/makefile_complex/app/main.f90 new file mode 100644 index 0000000..ac9ed51 --- /dev/null +++ b/test/example_packages/makefile_complex/app/main.f90 @@ -0,0 +1,7 @@ +program makefile_complex + use wrapper_mod, only: do_stuff + + implicit none + + call do_stuff +end program makefile_complex |