blob: 9fc24d4bd6ca8fbc0cf3ee8235bd14abee91708e [file] [log] [blame]
module m
implicit none (type, external)
!$omp nothing
type t
!$omp nothing
integer s
end type
contains
integer function foo (i)
integer :: i
!$omp nothing
if (.false.) &
& & !$omp nothing
i = i + 1
! In the following, '& & !$' is not a valid OpenMP sentinel and,
! hence, the line is regarded as comment
if (.false.) &
& & !$omp nothing
then
end if
foo = i
end
end module