annotate flang/test/Semantics/implicit01.f90 @ 181:df311c476dd5
CreateIdentifierInfo in ParseCbC (not yet worked)
author |
Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
date |
Sun, 31 May 2020 12:30:11 +0900 |
parents |
0572611fdcc8 |
children |
2e18cbf3894f |
rev |
line source |
173
|
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
|