blob: 0c710546d4efe7a211d8322466c3b79eae003b2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
! { dg-do run }
! { dg-options "-fdefault-integer-8" }
! PR fortran/32968
program selected
if (selected_int_kind (1) /= 1) call abort
if (selected_int_kind (3) /= 2) call abort
if (selected_int_kind (5) /= 4) call abort
if (selected_int_kind (10) /= 8) call abort
if (selected_real_kind (1) /= 4) call abort
if (selected_real_kind (2) /= 4) call abort
if (selected_real_kind (9) /= 8) call abort
if (selected_real_kind (10) /= 8) call abort
end program selected
|