comparison flang/test/Semantics/resolve26.f90 @ 173:0572611fdcc8 llvm10 llvm12

reorgnization done
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 25 May 2020 11:55:54 +0900
parents
children 2e18cbf3894f
comparison
equal deleted inserted replaced
172:9fbae9c8bf63 173:0572611fdcc8
1 ! RUN: %S/test_errors.sh %s %t %f18
2 module m1
3 interface
4 module subroutine s()
5 end subroutine
6 end interface
7 end
8
9 module m2
10 interface
11 module subroutine s()
12 end subroutine
13 end interface
14 end
15
16 submodule(m1) s1
17 end
18
19 !ERROR: Error reading module file for submodule 's1' of module 'm2'
20 submodule(m2:s1) s2
21 end
22
23 !ERROR: Error reading module file for module 'm3'
24 submodule(m3:s1) s3
25 end