comparison flang/test/Semantics/implicit01.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 subroutine s1
3 implicit none
4 !ERROR: More than one IMPLICIT NONE statement
5 implicit none(type)
6 end subroutine
7
8 subroutine s2
9 implicit none(external)
10 !ERROR: More than one IMPLICIT NONE statement
11 implicit none
12 end subroutine