xref: /llvm-project/flang/test/Semantics/getsymbols02.f90 (revision f7a15e0021697e2346d3aa335dedf2bb3cf468f9)
1! Tests -fget-symbols-sources with modules.
2
3PROGRAM helloworld
4    use mm2b
5    implicit none
6    integer::i
7    i = callget5()
8ENDPROGRAM
9
10! RUN: %flang_fc1 -fsyntax-only %S/Inputs/getsymbols02-a.f90
11! RUN: %flang_fc1 -fsyntax-only %S/Inputs/getsymbols02-b.f90
12! RUN: %flang_fc1 -fget-symbols-sources %s 2>&1 | FileCheck %s
13! CHECK: callget5: .{{[/\\]}}mm2b.mod,
14! CHECK: get5: .{{[/\\]}}.{{[/\\]}}mm2a.mod,
15