aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gfortran.dg/unresolved_fixup_2.f90
blob: ca0a05a629a1fbca56405fa546ae58cc27e2787a (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
! { dg-do compile }
!
! PR fortran/58007
! Unresolved fiixup while loading a module.
!
! This tests that the specification expression A%MAX_DEGREE in module BSR is
! correctly loaded and resolved in program MAIN.
!
! Original testcase from Daniel Shapiro <shapero@uw.edu>

module matrix
  type :: sparse_matrix
    integer :: max_degree
  end type
end module

module bsr
  use matrix

  type, extends(sparse_matrix) :: bsr_matrix
  end type

  integer :: i1
  integer :: i2
  integer :: i3
contains
  function get_neighbors (A)
    type(bsr_matrix), intent(in) :: A
    integer :: get_neighbors(A%max_degree)
  end function
end module

program main
  use matrix
  use bsr
end