mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-17 17:36:36 +00:00
46 lines
1.7 KiB
Fortran
46 lines
1.7 KiB
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1
|
|
! Miscellaneous constraint and requirement checking on declarations:
|
|
! - 8.5.6.2 & 8.5.6.3 constraints on coarrays
|
|
! - 8.5.19 constraints on the VOLATILE attribute
|
|
|
|
module m
|
|
!ERROR: 'mustbedeferred' is an ALLOCATABLE coarray and must have a deferred coshape
|
|
real, allocatable :: mustBeDeferred[*] ! C827
|
|
!ERROR: 'mustbeexplicit' is a non-ALLOCATABLE coarray and must have an explicit coshape
|
|
real :: mustBeExplicit[:] ! C828
|
|
type :: hasCoarray
|
|
real, allocatable :: coarray[:]
|
|
end type
|
|
real :: coarray[*]
|
|
type(hasCoarray) :: coarrayComponent
|
|
contains
|
|
!ERROR: VOLATILE attribute may not apply to an INTENT(IN) argument
|
|
subroutine C866(x)
|
|
intent(in) :: x
|
|
volatile :: x
|
|
!ERROR: VOLATILE attribute may apply only to a variable
|
|
volatile :: notData
|
|
external :: notData
|
|
end subroutine
|
|
subroutine C867
|
|
!ERROR: VOLATILE attribute may not apply to a coarray accessed by USE or host association
|
|
volatile :: coarray
|
|
!ERROR: VOLATILE attribute may not apply to a type with a coarray ultimate component accessed by USE or host association
|
|
volatile :: coarrayComponent
|
|
end subroutine
|
|
subroutine C868(coarray,coarrayComponent)
|
|
real :: coarray[*]
|
|
type(hasCoarray) :: coarrayComponent
|
|
block
|
|
!ERROR: VOLATILE attribute may not apply to a coarray accessed by USE or host association
|
|
volatile :: coarray
|
|
!ERROR: VOLATILE attribute may not apply to a type with a coarray ultimate component accessed by USE or host association
|
|
volatile :: coarrayComponent
|
|
end block
|
|
end subroutine
|
|
subroutine C839(x)
|
|
!ERROR: Coarray 'x' may not be an assumed-rank array
|
|
real, intent(in) :: x(..)[*]
|
|
end
|
|
end module
|