15 lines · plain
1! Tests -fget-symbols-sources with modules.2 3PROGRAM helloworld4 use mm2b5 implicit none6 integer::i7 i = callget5()8ENDPROGRAM9 10! RUN: %flang_fc1 -fsyntax-only %S/Inputs/getsymbols02-a.f9011! RUN: %flang_fc1 -fsyntax-only %S/Inputs/getsymbols02-b.f9012! RUN: %flang_fc1 -fget-symbols-sources %s 2>&1 | FileCheck %s13! CHECK: callget5: .{{[/\\]}}mm2b.mod,14! CHECK: get5: .{{[/\\]}}.{{[/\\]}}mm2a.mod,15