[to-be-committed] [RISC-V] Use Zbkb for general 64 bit constants when profitable
[official-gcc.git] / gcc / testsuite / gfortran.dg / pr98408.f90
blob4ec1a08fe02c2d240b48a9dfbd3c30a179415960
1 ! { dg-do run }
3 ! Contributed by Thomas Koenig <tkoenig@gcc.gnu.org>
5 program main
6 character (len=:), allocatable :: a(:)
7 allocate (character(len=10) :: a(5))
8 if (sizeof(a) .ne. 50) stop 1
9 deallocate (a)
10 end program main