1! Invalid use of routines defined inside a Fortran module. 2 3! { dg-compile-aux-modules "routine-module-mod-1.f90" } 4 5program main 6 use routine_module_mod_1 7 implicit none 8 !$acc routine (s_1) seq ! { dg-error "Cannot change attributes of USE-associated symbol s_1" } 9 ! { dg-error "NAME 's_1' invalid in \\!\\\$ACC ROUTINE \\( NAME \\)" "" { target *-*-* } .-1 } 10 !$acc routine (s_2) seq ! { dg-error "Cannot change attributes of USE-associated symbol s_2" } 11 ! { dg-error "NAME 's_2' invalid in \\!\\\$ACC ROUTINE \\( NAME \\)" "" { target *-*-* } .-1 } 12 !$acc routine (v_1) seq ! { dg-error "Cannot change attributes of USE-associated symbol v_1" } 13 ! { dg-error "NAME 'v_1' invalid in \\!\\\$ACC ROUTINE \\( NAME \\)" "" { target *-*-* } .-1 } 14 !$acc routine (w_1) gang ! { dg-error "Cannot change attributes of USE-associated symbol w_1" } 15 ! { dg-error "NAME 'w_1' invalid in \\!\\\$ACC ROUTINE \\( NAME \\)" "" { target *-*-* } .-1 } 16end program main 17