view gcc/testsuite/gfortran.dg/storage_size_2.f08 @ 152:2b5abeee2509

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

! { dg-do compile }
!
! PR 44649: [OOP] F2008: storage_size intrinsic
!
! Contributed by Janus Weil <janus@gcc.gnu.org>

use iso_c_binding, only: c_int, c_sizeof

type, bind(c) :: t 
  integer(c_int) :: j
end type

integer(4) :: i1
integer(c_int) :: i2
type(t) :: x

print *,c_sizeof(i1)
print *,c_sizeof(i2)
print *,c_sizeof(x)
print *, c_sizeof(ran())

print *,storage_size(1.0,4)
print *,storage_size(1.0,3.2)       ! { dg-error "must be INTEGER" }
print *,storage_size(1.0,(/1,2/))   ! { dg-error "must be a scalar" }
print *,storage_size(1.0,irand())   ! { dg-error "must be a constant" }

end