<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746960#M178818</link>
    <description>&lt;P&gt;unfortunately not on my menu by the 3 dots when logged in&lt;/P&gt;</description>
    <pubDate>Wed, 06 May 2026 14:59:18 GMT</pubDate>
    <dc:creator>bmchenrync</dc:creator>
    <dc:date>2026-05-06T14:59:18Z</dc:date>
    <item>
      <title>Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1743799#M178653</link>
      <description>&lt;P&gt;I was having issues with being able to view variables in Debug in VS 2022 v 2026 in certain subroutines&lt;/P&gt;&lt;P&gt;and couldn't figure out why?&lt;/P&gt;&lt;P&gt;did the ole 'all CAPS' but didn't fix it...&lt;/P&gt;&lt;P&gt;and then i noticed/discovered that&lt;/P&gt;&lt;P&gt;in VS 2022/2026&lt;/P&gt;&lt;P&gt;IF you use ONLY to specify the ONLY variables in a MOD used in a subroutine&lt;/P&gt;&lt;P&gt;then in DEBUG&lt;/P&gt;&lt;P&gt;VS will NOT display the variable value&amp;nbsp;&lt;SPAN&gt;and in Watch window is will say undefined!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once i commented out all ONLY specifications&lt;/P&gt;&lt;P&gt;Then ALL variables used in the subroutine reveal their values!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;strange?&lt;/P&gt;&lt;P&gt;Or is this the appropriate behavior with 2026/2022&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Apr 2026 14:24:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1743799#M178653</guid>
      <dc:creator>bmchenrync</dc:creator>
      <dc:date>2026-04-09T14:24:12Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1743972#M178658</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/41896"&gt;@Igor_V_Intel&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;May you please review this with VS integration team at Intel, perhaps in conjuction with the Fortran compiler team?&lt;/P&gt;&lt;P&gt;Please consider the attachment here and illustration below as a minimal reproducer the Intel team can utilize.&lt;/P&gt;&lt;P&gt;To add to OP's post, please consider a trivial module file m.f90 in a Visual Studio project as follows:&lt;/P&gt;&lt;LI-CODE lang="fortran"&gt;module m
   integer :: a = 42
   integer :: b = 24
end module m&lt;/LI-CODE&gt;&lt;P&gt;And a consuming program like so:&lt;/P&gt;&lt;LI-CODE lang="fortran"&gt;   use m, only : a
   print *, a
end&lt;/LI-CODE&gt;&lt;P&gt;As mentioned by OP, the USE statement with ONLY clause masks the object in the debugger:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="v2.png" style="width: 774px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/72069iFBEC6C973EBF9D25/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="v2.png" alt="v2.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Whereas without the ONLY clause, the debugger identifies the object - see below:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="v1.png" style="width: 796px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/72070iC9C8EE7EFD9FDE97/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="v1.png" alt="v1.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2026 21:24:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1743972#M178658</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2026-04-10T21:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1743975#M178659</link>
      <description>&lt;P&gt;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/41896"&gt;@Igor_V_Intel&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;May you please consider a variant of the above case for a quick review with Intel team and comment here?&lt;/P&gt;&lt;P&gt;Consider the module to employ PRIVATE/PUBLIC attributes to control visibility and USEability:&lt;/P&gt;&lt;LI-CODE lang="fortran"&gt;module m
   private
   integer, public :: a = 42
   integer :: b = 24
end module m&lt;/LI-CODE&gt;&lt;P&gt;Now, similar to IFORT and earlier versions of Visual Studio, one can utilize "qualified" names of objects viz. &lt;STRONG&gt;&lt;EM&gt;module_name::object_name&lt;/EM&gt;&lt;/STRONG&gt; to watch the objects in the debugger.&amp;nbsp; Interestingly this facility ignores the Fortran language PRIVATE/PUBLIC attributes which can be bothersome to some working in the proprietary codebase.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="v3.png" style="width: 788px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/72071i3D7116F586D53088/image-size/large/is-moderation-mode/true?v=v2&amp;amp;px=999&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="v3.png" alt="v3.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Are the above two aspects as Intel software teams have intended?&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;P.S.&amp;gt; A team I work with reported this issue to me upon seeing the original post.&amp;nbsp; The issue is of great concern and it will be highly beneficial if the VS integration team can include a fix for this as soon as possible.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2026 21:38:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1743975#M178659</guid>
      <dc:creator>FortranFan</dc:creator>
      <dc:date>2026-04-10T21:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744025#M178661</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Sorry i missed your responses yesterday.&lt;/P&gt;&lt;P&gt;Once back in my cage (aka the office) i will test and give response early next week (you know how Mondaze Mondaze go...)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the response and ideas and will get back to you soon&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Have a great weekend!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Apr 2026 13:30:54 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744025#M178661</guid>
      <dc:creator>bmchenrync</dc:creator>
      <dc:date>2026-04-11T13:30:54Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744281#M178671</link>
      <description>&lt;P&gt;now back in office i see Fortranfan clarified what i had posted so looking forward to seeing Intel's response.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2026 02:46:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744281#M178671</guid>
      <dc:creator>bmchenrync</dc:creator>
      <dc:date>2026-04-14T02:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744491#M178688</link>
      <description>&lt;P&gt;Hi, I did reproduce your observation about the private/public attributes, but couldn't reproduce that with "only"&lt;/P&gt;
&lt;P&gt;It still can show the value of a, even I have the "only" specifier in front of it. Did I miss anything ? Do you have the Intel Fortran Expression Evaluator installed ?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm using VS2026 and ifx 2025.3.2.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="only.png" style="width: 444px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/72128i478CAAB71FF2D522/image-dimensions/444x321?v=v2&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" width="444" height="321" role="button" title="only.png" alt="only.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2026 17:29:28 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744491#M178688</guid>
      <dc:creator>yzh_intel</dc:creator>
      <dc:date>2026-04-15T17:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744511#M178690</link>
      <description>&lt;P&gt;I haven't tried the public/private&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;guess i mainly use the ONLY so i know/specify which modules variables come from&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;however&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;if I specify in the watch window&lt;UL&gt;&lt;LI&gt;module::variable&lt;/LI&gt;&lt;LI&gt;it does show in the watch window&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However,&lt;/P&gt;&lt;P&gt;In my debug trials and tribulations I prefer/need/want to be able to simply right click and view the variable value&lt;/P&gt;&lt;P&gt;VS 2022 (Version 17.14.29 (March 2026))&lt;/P&gt;&lt;P&gt;VS2026 (just now updated to 18.4.3)&lt;/P&gt;&lt;P&gt;also Intel® Fortran Compiler 2025.3.3 [Intel(R) 64]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;if i use ONLY on a variable in a module i can only see values in the Watch window and not with the right mouse click&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;whereas if i remove the ONLY from modules then i can see the values of any of the variables used in the subroutine or program unit with a simple right click of the mouse&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Wed, 15 Apr 2026 21:24:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744511#M178690</guid>
      <dc:creator>bmchenrync</dc:creator>
      <dc:date>2026-04-15T21:24:20Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744518#M178693</link>
      <description>&lt;P&gt;Hi, Please continue to use module::variable in the watch window as a workaround.&lt;/P&gt;
&lt;P&gt;I can reproduce your observation now if I only enter "a" instead of "m::a" in the watch window. And if you hover the cursor above the variable during debug, it doesn't show its value. This is indeed somewhat inconvenient.&lt;/P&gt;
&lt;P&gt;As far as I can understand now, this seems a deliberate design in the compiler, that for code "use m, only : a", no new variable is created, instead it's replaced with "m::a" during compile time and that's why you see the error "Undefined variable a" when trying to see its value.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have escalated this issue to the compiler team and will get back once I get any updates.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="only1.png" style="width: 472px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/72131iF13769DE4408DDF7/image-dimensions/472x406?v=v2&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" width="472" height="406" role="button" title="only1.png" alt="only1.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Apr 2026 22:32:14 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744518#M178693</guid>
      <dc:creator>yzh_intel</dc:creator>
      <dc:date>2026-04-15T22:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744596#M178697</link>
      <description>&lt;P&gt;Thank you for looking at this and the explanation. I too suffer from this and it does indeed impact quite significantly on productivity when debugging. I was now aware of the ONLY issue I thought is was all module variables. This was because I generally ONLY use ONLY i.e. in 99% of cases. At least I can make a temporary edit to use "all" for specific debug activities as a workaround, that is still a pain because when hunting for where a problem happens I use&amp;nbsp; 'hover' until I have homed in of some specific routine.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2026 12:33:20 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744596#M178697</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2026-04-16T12:33:20Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744650#M178705</link>
      <description>&lt;P&gt;Hi, I have some updates that the issue has been fixed with the 2026.0 release. Please verify when the package goes public.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Right now, the variable "a" can be resolved in watch window, it also shows up in the locals window and when you hover your cursor on it.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="only_2026p0.png" style="width: 418px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/72140i3300979894AAA34B/image-dimensions/418x482?v=v2&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" width="418" height="482" role="button" title="only_2026p0.png" alt="only_2026p0.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2026 19:42:58 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744650#M178705</guid>
      <dc:creator>yzh_intel</dc:creator>
      <dc:date>2026-04-16T19:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744675#M178708</link>
      <description>&lt;P&gt;great news, thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Apr 2026 23:07:31 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744675#M178708</guid>
      <dc:creator>andrew_4619</dc:creator>
      <dc:date>2026-04-16T23:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744879#M178715</link>
      <description>&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;P&gt;Hey, I’ve seen something kinda similar in VS before, so your confusion makes sense.&lt;/P&gt;&lt;P&gt;What you’re running into is basically how the debugger handles scope + compiler optimization when you use ONLY in a module. It’s not really “breaking”, but it does feel like it because debug visibility gets weird.&lt;/P&gt;&lt;P&gt;I had a case in VS2022 where I thought variables were just not being passed correctly, but turns out the debugger simply wasn’t exposing them due to how the compiler was treating that restricted scope. When I removed or loosened the ONLY list, suddenly everything appeared again in Watch window.&lt;/P&gt;&lt;P&gt;What worked for me:&lt;/P&gt;&lt;P&gt;Try compiling with Debug config (not Release optimized)&lt;/P&gt;&lt;P&gt;Avoid heavy ONLY filtering inside modules you actively debug&lt;/P&gt;&lt;P&gt;Use explicit local copies inside the subroutine if needed&lt;/P&gt;&lt;P&gt;Sometimes rebuilding solution clears stale debug symbols too&lt;/P&gt;&lt;P&gt;It’s one of those “technically expected behavior, but still confusing” things in VS.&lt;/P&gt;&lt;P&gt;Not sure if it’s improved in newer builds or still same in 2026 version, but yeah, you’re not imagining it.&lt;/P&gt;&lt;P&gt;By the way, I’ve also hit similar quirks while testing small modules in my own projects under “U-Shop” dev setup — debugging scope can really mess with visibility sometimes.&lt;/P&gt;&lt;P&gt;Have you tried isolating it in a minimal repro project to confirm it’s ONLY-related?&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 18 Apr 2026 10:34:16 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1744879#M178715</guid>
      <dc:creator>nathn34</dc:creator>
      <dc:date>2026-04-18T10:34:16Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746687#M178787</link>
      <description>&lt;P&gt;I also had issues with watching variables in debug if specifying "use module, only : var" with VS2022 17.4.x , Intel 2025.3, and FEE 2025.2.2. We also lost the ability to hover over the variable to see the values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I got the 2026.0 compiler installed last week and the behavior is now worse than 2025.3. Now all module variables, including ones with no "module, only" designation are showing up as undefined. I deleted my .VS folder, full clean build, all extensions up to date, IFEE still latest available as 2025.2.2. Attached is a snapshot of a very simple sample code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlexM1_0-1777902366415.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/72443iF463B77F74588E47/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="AlexM1_0-1777902366415.png" alt="AlexM1_0-1777902366415.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 13:48:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746687#M178787</guid>
      <dc:creator>AlexM1</dc:creator>
      <dc:date>2026-05-04T13:48:42Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746688#M178788</link>
      <description>&lt;P&gt;Sorry, Visual Studio version is 17.14.25.&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2026 13:50:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746688#M178788</guid>
      <dc:creator>AlexM1</dc:creator>
      <dc:date>2026-05-04T13:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746746#M178791</link>
      <description>&lt;P&gt;With update out and some folks saying things not working and since i started this topic&lt;/P&gt;&lt;P&gt;I tested (why not gamble, eh?!)&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DEBUG WATCH/CHECK VARIABLE VALUES WORK&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Test run on my win10 computer (so expect all will work on my win11 computer too which i will check later or tomorrow)&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Visual Studio 2026 18.5.2&lt;/LI&gt;&lt;LI&gt;INTEL Fortran 2026.0.0.566&lt;/LI&gt;&lt;LI&gt;FEE_VSIX_V17&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;A right mouse hover over a variable produces variable value if Module without USE statement&lt;/P&gt;&lt;P&gt;Module name::Variable lists value in watch window for Modules with USE statement&lt;/P&gt;&lt;P&gt;BRAVO!&lt;/P&gt;&lt;P&gt;Great work INTEL!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2026 00:14:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746746#M178791</guid>
      <dc:creator>bmchenrync</dc:creator>
      <dc:date>2026-05-05T00:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746823#M178798</link>
      <description>&lt;P&gt;unfortunately it isn't 100% working&lt;/P&gt;&lt;P&gt;on a project it wouldn't reveal the values etc&lt;/P&gt;&lt;P&gt;have not yet tested on win11 will do so today&lt;/P&gt;&lt;P&gt;but progress is made as it does work in some instances and if i can isolate WHY it doesn't work in others, i will post up a sample for INTEL to take a look/see at&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2026 13:58:50 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746823#M178798</guid>
      <dc:creator>bmchenrync</dc:creator>
      <dc:date>2026-05-05T13:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746835#M178800</link>
      <description>&lt;P&gt;Tested on Win11&lt;/P&gt;&lt;P&gt;and then re-tested on Win10&lt;/P&gt;&lt;P&gt;with 2 separate projects&lt;/P&gt;&lt;P&gt;and both behave the same (so far and this is a quick look/check)&lt;/P&gt;&lt;P&gt;Some initial observations:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You need to remove ONLY and can ONLY look at variable values MODULENAME::VARIABLENAME in watch window&lt;/LI&gt;&lt;LI&gt;Case does not matter (upper/lower case is fine in variable and watch window)&lt;/LI&gt;&lt;LI&gt;Local variables values can be checked with right mouse click&lt;/LI&gt;&lt;LI&gt;Module variables only can be viewed in Watch window&lt;UL&gt;&lt;LI&gt;One minor issue (for me) with one of my programs:&lt;UL&gt;&lt;LI&gt;I use equivalence to be able to reset to 0 entire modules (rather than individual elements) (from program written a while ago)&lt;UL&gt;&lt;LI&gt;ONLY the array variable equivalenced to the individual variables is viewable in the subroutine&lt;/LI&gt;&lt;LI&gt;For examples if you have a module with 50 variables and you equivalence each of those 50 variable names to an array All_VARIABLES(1:50)&lt;UL&gt;&lt;LI&gt;(so you can simply set ALL_VARIABLES(1:50) to 0&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;in Subroutines you can ONLY watch elements in ALL_VARIABLES(1:50)&amp;nbsp; NOT the individual variable names&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Still checking things but it appears to work as expected except individual module elements ONLY in watch window&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and apologies for TMI and not reading release notes since all this may be obvious/documented!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;More checking soon (but cage being rattled so need to get back to project work!)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2026 15:38:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746835#M178800</guid>
      <dc:creator>bmchenrync</dc:creator>
      <dc:date>2026-05-05T15:38:33Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746842#M178801</link>
      <description>&lt;P&gt;Hi B, just to clarify, did you clean your solution and recompile with 2026.0? Because the behavior your describing is the behavior we saw in 2025.3 and without a clean it might not actually be recompiling. In 2026.0, all module variables cannot be hovered over and all module variables require Module::var in the watch window even if they are within scope from the use module statements. This is a severe debugging regression we are seeing from switching from ifort.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlexM1_0-1777997799742.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/72464i67C2675E96014FC1/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="AlexM1_0-1777997799742.png" alt="AlexM1_0-1777997799742.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;In my picture are side by side watches of 2025.3 and 2026.0.&lt;BR /&gt;&lt;BR /&gt;1. Red boxes: In 2025.3 if a module variable was set within the same &lt;STRONG&gt;file&lt;/STRONG&gt; as the subroutine making a "use module, only :" statement, then that variable was watchable with hover over or in the watch window &lt;STRONG&gt;WITHOUT&lt;/STRONG&gt; "module::var". No longer working in 2026.0.&lt;BR /&gt;&lt;BR /&gt;2. Blue boxes: &lt;STRONG&gt;(worse in 2026.0)&lt;/STRONG&gt; In 2025.3 not using the ", only :" statement allowed us to hover over and watch values without "module::var". In 2026.0, this now appears to also be undefined and we cannot hover over the variable.&lt;BR /&gt;&lt;BR /&gt;3. Green boxes: In both 2025.3 and 2026.0 you cannot hover over nor watch any module variable if its included in a "use module, only:" statement. All module variables require "module::var".&lt;BR /&gt;&lt;BR /&gt;We should be able to watch all module variables that are within scope without having to manually type in "module name::var" into the watch window like we were able to in ifort.&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2026 16:28:52 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746842#M178801</guid>
      <dc:creator>AlexM1</dc:creator>
      <dc:date>2026-05-05T16:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746847#M178802</link>
      <description>&lt;P&gt;Just for completion sake, I have also attached an image of the same sample solution watch behavior in oneapi 2023 ifort. Everything within scope of the subroutine is easily watchable with or without module::var and everything can be hovered over.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlexM1_0-1777999701274.png" style="width: 400px;"&gt;&lt;img src="https://community.intel.com/t5/image/serverpage/image-id/72465i6FD29F3A9D67334C/image-size/medium?v=v2&amp;amp;px=400&amp;amp;whitelist-exif-data=Orientation%2CResolution%2COriginalDefaultFinalSize%2CCopyright" role="button" title="AlexM1_0-1777999701274.png" alt="AlexM1_0-1777999701274.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2026 16:48:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746847#M178802</guid>
      <dc:creator>AlexM1</dc:creator>
      <dc:date>2026-05-05T16:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: Observation: If ONLY used in subroutine then variables will NOT display in DEBUG</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746851#M178803</link>
      <description>&lt;P&gt;as i recall you are using an older version of Visual Studio? 17.14.25&lt;/P&gt;&lt;P&gt;you might update visual studio to latest?&lt;/P&gt;&lt;P&gt;Recall i am using&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;VS 2022 (Version 17.14.29 (March 2026))&lt;/LI&gt;&lt;LI&gt;VS2026 (just now updated to 18.4.3)&lt;/LI&gt;&lt;LI&gt;also Intel® Fortran Compiler 2025.3.3 [Intel(R) 64]&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;i did recompile all with latest compiler after clean (from menu)&lt;/P&gt;&lt;P&gt;when have chance later will be sure fully cleaned out the directory etc (i recall back in the day clean did not entirely clean all out...so will double check)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;b&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2026 17:11:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Observation-If-ONLY-used-in-subroutine-then-variables-will-NOT/m-p/1746851#M178803</guid>
      <dc:creator>bmchenrync</dc:creator>
      <dc:date>2026-05-05T17:11:11Z</dc:date>
    </item>
  </channel>
</rss>

