Adds a hint to the warning message to disable a warning and updates the tests to expect this. Also fixes a bug in the storage of canonical spelling of error flags so that they are not used after free.
28 lines
743 B
Fortran
28 lines
743 B
Fortran
! RUN: %python %S/test_errors.py %s %flang_fc1 -pedantic -Werror
|
|
! PDT sensitivity of FINAL subroutines
|
|
module m
|
|
type :: pdt(k)
|
|
integer, kind :: k
|
|
contains
|
|
final :: finalArr, finalElem
|
|
end type
|
|
contains
|
|
subroutine finalArr(x)
|
|
type(pdt(1)), intent(in out) :: x(:)
|
|
end
|
|
elemental subroutine finalElem(x)
|
|
type(pdt(3)), intent(in out) :: x
|
|
end
|
|
end
|
|
|
|
program test
|
|
use m
|
|
type(pdt(1)) x1(1)
|
|
type(pdt(2)) x2(1)
|
|
type(pdt(3)) x3(1)
|
|
!PORTABILITY: Variable 'x1([INTEGER(8)::1_8])' has a vector subscript and will be finalized by non-elemental subroutine 'finalarr' [-Wvector-subscript-finalization]
|
|
x1([1]) = pdt(1)()
|
|
x2([1]) = pdt(2)() ! ok, doesn't match either
|
|
x3([1]) = pdt(3)() ! ok, calls finalElem
|
|
end
|