brintos

brintos / llvm-project-archived public Read only

0
0
Text · 1.9 KiB · 7129430 Raw
79 lines · plain
1! RUN: %python %S/test_errors.py %s %flang_fc12! C815: an attribute may be applied at most once per scope3module m4  real a1, a2, v1, v25  asynchronous a16  asynchronous a27  !ERROR: ASYNCHRONOUS attribute was already specified on 'a2'8  asynchronous a29  volatile v110  volatile v211  !ERROR: VOLATILE attribute was already specified on 'v2'12  volatile v213 contains14  subroutine modsub15    asynchronous a116    asynchronous a217    !ERROR: ASYNCHRONOUS attribute was already specified on 'a2'18    asynchronous a219    volatile v120    volatile v221    !ERROR: VOLATILE attribute was already specified on 'v2'22    volatile v223    block24      asynchronous a125      asynchronous a226      !ERROR: ASYNCHRONOUS attribute was already specified on 'a2'27      asynchronous a228      volatile v129      volatile v230      !ERROR: VOLATILE attribute was already specified on 'v2'31      volatile v232    end block33  end34end35 36subroutine s37  use m38  asynchronous a139  asynchronous a240  !ERROR: ASYNCHRONOUS attribute was already specified on 'a2'41  asynchronous a242  volatile v143  volatile v244  !ERROR: VOLATILE attribute was already specified on 'v2'45  volatile v246  block47    asynchronous a148    asynchronous a249    !ERROR: ASYNCHRONOUS attribute was already specified on 'a2'50    asynchronous a251    volatile v152    volatile v253    !ERROR: VOLATILE attribute was already specified on 'v2'54    volatile v255  end block56 contains57  subroutine internal58    asynchronous a159    asynchronous a260    !ERROR: ASYNCHRONOUS attribute was already specified on 'a2'61    asynchronous a262    volatile v163    volatile v264    !ERROR: VOLATILE attribute was already specified on 'v2'65    volatile v266    block67      asynchronous a168      asynchronous a269      !ERROR: ASYNCHRONOUS attribute was already specified on 'a2'70      asynchronous a271      volatile v172      volatile v273      !ERROR: VOLATILE attribute was already specified on 'v2'74      volatile v275    end block76  end77end78 79