blob: cd5d189a1aa55346c87fa73ee0526f0f141855a1 [file] [log] [blame]
! { dg-do compile }
! { dg-additional-options "-Wuninitialized" }
subroutine test
INTEGER :: i
!$acc parallel
i = 1
!$acc end parallel
end subroutine test
subroutine test2
INTEGER :: i
!$acc parallel firstprivate (i) ! { dg-warning "is used uninitialized" }
i = 1
!$acc end parallel
end subroutine test2