Plugins: Add label-text.h to CPPLIB_H so it will be installed [PR115288]
[official-gcc.git] / gcc / testsuite / gfortran.dg / c_sizeof_6.f90
blob7043ac6ca99a0018f4854ce39108a5dd95ee5e4b
1 ! { dg-do compile }
3 program foo
5 use iso_c_binding, only: c_int, c_char, c_sizeof
7 integer(kind=c_int) :: i
9 character(kind=c_char,len=1),parameter :: str2(4) = ["a","b","c","d"]
11 i = c_sizeof(str2(1:3))
13 if (i /= 3) STOP 1
15 end program foo