view gcc/testsuite/gfortran.dg/inquiry_type_ref_4.f90 @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 1830386684a0
children
line wrap: on
line source

! { dg-do compile }
! { dg-options "-fdump-tree-original" }
!
! Check the fix for PR87881.
!
  complex(8) :: zi = (0,-1_8)
  character(2) :: chr ='ab'
  if (zi%re%kind .ne. kind (real (zi))) stop 1
  if (chr%len%kind .ne. kind (len (chr))) stop 2

! After simplification there should only be the delarations for 'zi' and 'chr'

! { dg-final { scan-tree-dump-times "zi" 1 "original" } }
! { dg-final { scan-tree-dump-times "chr" 1 "original" } }
end