aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/c_kind_int128_test1.f03
blob: b1919614b2e20c3d2813f6aef37a6d469244802e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
! { dg-do compile }
! { dg-options "-std=f2003" }
! { dg-require-effective-target fortran_integer_16 }
!

subroutine c_kind_int128_1
  use, intrinsic :: iso_c_binding
  implicit none

  integer(c_int128_t) :: a   ! { dg-error "has no IMPLICIT type" }
  integer(c_int_least128_t) :: b   ! { dg-error "has no IMPLICIT type" }
  integer(c_int_fast128_t) :: c   ! { dg-error "has no IMPLICIT type" }

end subroutine c_kind_int128_1


subroutine c_kind_int128_2
  use, intrinsic :: iso_c_binding

  integer(c_int128_t) :: a   ! { dg-error "has not been declared or is a variable" }
  integer(c_int_least128_t) :: b   ! { dg-error "has not been declared or is a variable" }
  integer(c_int_fast128_t) :: c   ! { dg-error "has not been declared or is a variable" }

end subroutine c_kind_int128_2