https://gcc.gnu.org/bugzilla/show_bug.cgi?id=100018
Bug ID: 100018
Summary: ICE on missing polymorphic argument
Product: gcc
Version: 11.0
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: fortran
Assignee: unassigned at gcc dot gnu.org
Reporter: jrfsousa at gmail dot com
Target Milestone: ---
Hi All!
ICE with simple subroutine missing a dummy argument.
subroutine foo(that)
implicit none
class(*), target, intent(in) :: this
class(*), pointer, intent(out) :: that
that => this
return
end subroutine foo
Tested on:
GNU Fortran (GCC) 11.0.1 20210410 (experimental)
GNU Fortran (GCC) 10.3.1 20210410
GNU Fortran (GCC) 9.3.1 20210410
Thank you very much.
Best regards,
José Rui