- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The code below triggers an ICE with ifx 2025.1.0.
MODULE M
IMPLICIT NONE
TYPE :: T_A
CONTAINS
PROCEDURE, PUBLIC :: P
END TYPE T_A
TYPE :: T_B
TYPE(T_A) :: A
END TYPE T_B
TYPE(T_B) :: O[*]
CONTAINS
SUBROUTINE P(X)
IMPLICIT NONE
CLASS(T_A), INTENT(IN) :: X[*]
END SUBROUTINE P
END MODULE M
PROGRAM P
USE :: M
IMPLICIT NONE
CALL O[THIS_IMAGE()]%A%P()
END PROGRAM P
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I tested this internally, and there is no ICE with the upcoming 2025.2 release of ifx.
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I tested this internally, and there is no ICE with the upcoming 2025.2 release of ifx.

Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page