4 integer, intent(out
) :: x
, y
6 x
= numeric_storage_size
7 y
= character_storage_size
11 use iso_fortran_env
, foo
=> numeric_storage_size
12 integer, intent(in
) :: x
, y
14 if (foo
/= x
.or
. character_storage_size
/= y
) call abort
18 use iso_fortran_env
, only
: numeric_storage_size
, character_storage_size
19 integer, intent(in
) :: x
, y
21 if (numeric_storage_size
/= x
.or
. character_storage_size
/= y
) call abort