- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I am using VS2022+oneapi2025. Here is my program:
module AAA
implicit none
type AA
integer :: a=0
real(8) :: b=1.6
contains
procedure,pass :: abc
end type AA
interface
module subroutine abc(self,cc)
class(AA),intent(inout) :: self
real(8),intent(inout) :: cc
end subroutine abc
end interface
contains
module subroutine abc(self,cc)
class(AA),intent(inout) :: self
real(8),intent(inout) :: cc
self%b=cc
end subroutine abc
end module AAA
program main
use AAA
implicit none
real(8) :: sd=10.9
type(AA) :: aac
call aac%abc(sd)
end program main
Variable "self" cannot show in VS watch when debugging:
Is there anyone can help me?
Link Copied
4 Replies
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Another of the many cases the debugger has problems with. The latest FEE patch is applied to my system and that does not fix this one.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thank you for reporting this. I have escalated to Debugger Engineering.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
This issue will be fixed in the upcoming 2025.1 ifx release:
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Thanks

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