New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
m1.f90 in vendors/t/fcm-make/25-build-cyclic-2/src – NEMO

source: vendors/t/fcm-make/25-build-cyclic-2/src/m1.f90 @ 10669

Last change on this file since 10669 was 10669, checked in by nicolasmartin, 5 years ago

Import latest FCM release from Github into the repository for testing

File size: 231 bytes
Line 
1module m1
2character(*), parameter :: WHATEVER
3contains
4subroutine s1()
5write(*, '(a)') f1() // ' from s1'
6end subroutine s1
7function f1()
8use m2, only: HELLO
9character(len=len(HELLO)) :: f1
10f1 = hello
11end function f1
12end module m1
Note: See TracBrowser for help on using the repository browser.