You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
353 B
16 lines
353 B
! RUN: %S/test_symbols.sh %s %t %f18
|
|
!DEF: /main MainProgram
|
|
program main
|
|
!DEF: /main/x POINTER ObjectEntity REAL(4)
|
|
pointer :: x
|
|
!REF: /main/x
|
|
real x
|
|
!DEF: /main/y EXTERNAL, POINTER (Function) ProcEntity REAL(4)
|
|
pointer :: y
|
|
!REF: /main/y
|
|
procedure (real) :: y
|
|
!DEF: /main/z (Implicit) ObjectEntity REAL(4)
|
|
!REF: /main/y
|
|
z = y()
|
|
end program
|