aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/allocate_with_typespec_3.f90
blob: 13a1596bf693d7fe35b02a3867674d460de90098 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
! { dg-do compile }
!
! Allocation of arrays with a type-spec specification with implicit none.
!
subroutine implicit_none_test1

   implicit none

   real, allocatable :: x(:)
   real(4), allocatable :: x4(:)
   real(8), allocatable :: x8(:)
   double precision, allocatable :: d1(:)
   doubleprecision, allocatable :: d2(:)
   character, allocatable :: c1(:)

   type a
      integer mytype
   end type a

   type(a), allocatable :: b(:)

   allocate(complex :: x(1))       ! { dg-error "is type incompatible" }
   allocate(real(8) :: x4(1))      ! { dg-error "differs from the kind type parameter" }
   allocate(real(4) :: x8(1))      ! { dg-error "differs from the kind type parameter" }
   allocate(double :: d1(1))       ! { dg-error "Error in type-spec at" }
   allocate(character(:) :: c1(1)) ! { dg-error "cannot contain a deferred type parameter" }
   allocate(real :: b(1))          ! { dg-error "is type incompatible" }

end subroutine implicit_none_test1
!
! Allocation of a scalar with a type-spec specification with implicit none
!
subroutine implicit_none_test2

   implicit none

   real, allocatable :: x
   real(4), allocatable :: x4
   real(8), allocatable :: x8
   double precision, allocatable :: d1
   character, allocatable :: c1

   type a
      integer mytype
   end type a

   type(a), allocatable :: b

   allocate(complex :: x)       ! { dg-error "is type incompatible" }
   allocate(real(8) :: x4)      ! { dg-error "differs from the kind type parameter" }
   allocate(real(4) :: x8)      ! { dg-error "differs from the kind type parameter" }
   allocate(double :: d1)       ! { dg-error "Error in type-spec at" }
   allocate(character(:) :: c1) ! { dg-error "cannot contain a deferred type parameter" }
   allocate(real :: b)          ! { dg-error "is type incompatible" }

end subroutine implicit_none_test2
!
! Allocation of arrays with a type-spec specification with implicit none.
!
subroutine implicit_test3

   real, allocatable :: x(:)
   real(4), allocatable :: x4(:)
   real(8), allocatable :: x8(:)
   double precision, allocatable :: d1(:)
   doubleprecision, allocatable :: d2(:)
   character, allocatable :: c1(:)

   type a
      integer mytype
   end type a

   type(a), allocatable :: b(:)

   allocate(complex :: x(1))       ! { dg-error "is type incompatible" }
   allocate(real(8) :: x4(1))      ! { dg-error "differs from the kind type parameter" }
   allocate(real(4) :: x8(1))      ! { dg-error "differs from the kind type parameter" }
   allocate(double :: d1(1))       ! { dg-error "Error in type-spec" }
   allocate(character(:) :: c1(1)) ! { dg-error "cannot contain a deferred type parameter" }
   allocate(real :: b(1))          ! { dg-error "is type incompatible" }

end subroutine implicit_test3
!
! Allocation of a scalar with a type-spec specification without implicit none
!
subroutine implicit_test4

   real, allocatable :: x
   real(4), allocatable :: x4
   real(8), allocatable :: x8
   double precision, allocatable :: d1
   character, allocatable :: c1

   type a
      integer mytype
   end type a

   type(a), allocatable :: b

   allocate(complex :: x)       ! { dg-error "is type incompatible" }
   allocate(real(8) :: x4)      ! { dg-error "differs from the kind type parameter" }
   allocate(real(4) :: x8)      ! { dg-error "differs from the kind type parameter" }
   allocate(double :: d1)       ! { dg-error "Error in type-spec at" }
   allocate(character(:) :: c1) ! { dg-error "cannot contain a deferred type parameter" }
   allocate(real :: b)          ! { dg-error "is type incompatible" }

end subroutine implicit_test4