You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
393 B
15 lines
393 B
! Tests -fget-symbols-sources with modules.
|
|
|
|
PROGRAM helloworld
|
|
use mm2b
|
|
implicit none
|
|
integer::i
|
|
i = callget5()
|
|
ENDPROGRAM
|
|
|
|
! RUN: %f18 -fparse-only %S/Inputs/getsymbols02-a.f90
|
|
! RUN: %f18 -fparse-only %S/Inputs/getsymbols02-b.f90
|
|
! RUN: %f18 -fget-symbols-sources -fparse-only %s 2>&1 | FileCheck %s
|
|
! CHECK: callget5: .{{[/\\]}}mm2b.mod,
|
|
! CHECK: get5: .{{[/\\]}}mm2a.mod,
|