This is the mail archive of the
gcc-bugs@gcc.gnu.org
mailing list for the GCC project.
[Bug fortran/29992] INTERFACE equivalent to MODULE PROCEDURE?!
- From: "franke dot daniel at gmail dot com" <gcc-bugzilla at gcc dot gnu dot org>
- To: gcc-bugs at gcc dot gnu dot org
- Date: 27 Nov 2006 09:28:20 -0000
- Subject: [Bug fortran/29992] INTERFACE equivalent to MODULE PROCEDURE?!
- References: <bug-29992-6552@http.gcc.gnu.org/bugzilla/>
- Reply-to: gcc-bugzilla at gcc dot gnu dot org
------- Comment #1 from franke dot daniel at gmail dot com 2006-11-27 09:28 -------
(report continued)
$> cat foo2.f90
MODULE class_foo_type
TYPE :: foo
INTEGER :: dummy
END TYPE
END MODULE
MODULE class_foo
USE class_foo_type, ONLY: foo
INTERFACE foo_init
SUBROUTINE foo_init_default(this)
USE class_foo_type, ONLY: foo
TYPE(foo), INTENT(out) :: this
END SUBROUTINE
END INTERFACE
END MODULE
--
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=29992