http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41951
--- Comment #9 from Tobias Burnus 2011-12-16
14:30:15 UTC ---
(In reply to comment #8)
> I failed to nail it in the standard, but I am sure that "12.4.3.4.5
> Restrictions on generic declarations" somehow must apply.
Thus I have now asked at
htt
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41951
--- Comment #8 from Tobias Burnus 2011-12-13
11:40:51 UTC ---
(In reply to comment #6)
> Given that NAG 5.2 compiles it and as "assign" is only called via
> "assignment(=)", there must be some issue with the assignment resolution.
Actually, I wo
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41951
--- Comment #7 from Tobias Burnus 2011-12-12
13:14:24 UTC ---
(In reply to comment #6)
> However, while the example of comment 2 (attachment 18978 [details]) compiles,
> it fails to link with: undefined reference to `assign_'
The problem is in
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41951
--- Comment #6 from Tobias Burnus 2011-12-12
08:03:41 UTC ---
STATUS:
With the commit for PR 41539, there is no longer an ICE.
However, while the example of comment 2 (attachment 18978) compiles, it fails
to link with: undefined reference to `
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41951
--- Comment #5 from Dominique d'Humieres 2011-01-23
10:57:05 UTC ---
> Another test case, from ...
It is pr47399.
http://gcc.gnu.org/bugzilla/show_bug.cgi?id=41951
Thomas Koenig changed:
What|Removed |Added
CC||tkoenig at gcc dot gnu.org
--- Comment #4
--- Comment #3 from tkoenig at gcc dot gnu dot org 2009-12-05 22:14 ---
Reduced test case, from c2.f90:
module m_sort
implicit none
type, abstract :: sort_t
contains
procedure(gt_cmp), deferred :: gt_cmp
end type sort_t
contains
subroutine bsort(a)
class(sort_t), inten