brintos

brintos / llvm-project-archived public Read only

0
0
Text · 297 B · 95bfd4e Raw
12 lines · plain
1! RUN: %python %S/test_errors.py %s %flang_fc1 -fimplicit-none-type-never2subroutine s13  implicit none4  i = j + k  ! would be error without -fimplicit-none-type-never5end6 7subroutine s2(a, n)8  implicit none9  real :: a(n)  ! would be error without -fimplicit-none-type-never10  integer :: n11end12