blob: ffab312380a23d78c202a401567555ac6fd27f9c [file] [log] [blame]
! { dg-do run }
! { dg-options "-fno-range-check" }
program test
integer :: i
i = int(z'FFFFFFFF',kind(i))
if (i /= -1) STOP 1
if (int(z'FFFFFFFF',kind(i)) /= -1) STOP 2
if (popcnt(int(z'0F00F00080000001',8)) /= 10) STOP 3
if (popcnt(int(z'800F0001',4)) /= 6) STOP 4
end program test