blob: 235826ee7bfbb75884a8756bf0eae68ad1678c0b [file] [log] [blame]
! PR c/101297
module m
implicit none
integer :: i
contains
subroutine foo ()
!$omp atomic update, ! { dg-error "Clause expected at .1. after trailing comma" }
i = i + 1
!$omp atomic update,, ! { dg-error "Failed to match clause" }
i = i + 1
end
end module