<?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 W0nderful, thanks. in Intel® Fortran Compiler</title>
    <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009441#M105577</link>
    <description>&lt;P&gt;W0nderful, thanks.&lt;/P&gt;</description>
    <pubDate>Thu, 05 Nov 2015 18:59:34 GMT</pubDate>
    <dc:creator>IanH</dc:creator>
    <dc:date>2015-11-05T18:59:34Z</dc:date>
    <item>
      <title>Identifying location in source with error 8322 (missing deferred binding)</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009435#M105571</link>
      <description>&lt;P&gt;If a non-abstract extension of a abstract derived type fails to implement a deferred binding of the parent type, then ifort 16.0 (and earlier) issue a diagnostic without particularly useful source location information.&amp;nbsp; If the parent type is in the same program unit as the extension with the missing binding, then the compiler will identify the binding in the parent, while if the parent type is in a different program unit, then no line location information is provided at all.&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Could this be please changed so that the faulty non-abstract extension&lt;STRONG&gt; &lt;/STRONG&gt;type is nominated by the error location.&lt;/P&gt;

&lt;P&gt;For example:&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt;MODULE p
  IMPLICIT NONE
  TYPE, ABSTRACT :: Parent
  CONTAINS
    PROCEDURE(intf), DEFERRED, NOPASS :: OOPSIMadeAMistake
  END TYPE Parent
  ABSTRACT INTERFACE
    SUBROUTINE intf
    END SUBROUTINE intf
  END INTERFACE
END MODULE p
MODULE m
  USE p
  IMPLICIT NONE
  TYPE, EXTENDS(Parent) :: A
  CONTAINS
    PROCEDURE, NOPASS :: OOPSIMadeAMistake =&amp;gt; oops
  END TYPE A
  TYPE, EXTENDS(Parent) :: B
  CONTAINS
    PROCEDURE, NOPASS :: OOPSIMadeAMistake =&amp;gt; oops
  END TYPE B
  TYPE, EXTENDS(Parent) :: C
  CONTAINS
    PROCEDURE, NOPASS :: OOPSIMadeAMistake =&amp;gt; oops
  END TYPE C
  TYPE, EXTENDS(Parent) :: D
  CONTAINS
    PROCEDURE, NOPASS :: OOPSIMadeAMistake =&amp;gt; oops
  END TYPE D
  TYPE, EXTENDS(Parent) :: E
  CONTAINS
    PROCEDURE, NOPASS :: OOPSIMadeAMistake =&amp;gt; oops
  END TYPE E
  TYPE, EXTENDS(Parent) :: F
  CONTAINS
    PROCEDURE, NOPASS :: OOPSIMadeAMistake =&amp;gt; oops
  END TYPE F
  TYPE, EXTENDS(Parent) :: G
  CONTAINS
    PROCEDURE, NOPASS :: OOPSIMadeAMistake =&amp;gt; oops
  END TYPE G
  TYPE, EXTENDS(Parent) :: H
  CONTAINS
    PROCEDURE, NOPASS :: OOPSIMadeAMistake =&amp;gt; oops
  END TYPE H
  TYPE, EXTENDS(Parent) :: I
  CONTAINS
    PROCEDURE, NOPASS :: O0PSIMadeAMistake =&amp;gt; oops
  END TYPE I
  TYPE, EXTENDS(Parent) :: J
  CONTAINS
    PROCEDURE, NOPASS :: OOPSIMadeAMistake =&amp;gt; oops
  END TYPE J
  TYPE, EXTENDS(Parent) :: K
  CONTAINS
    PROCEDURE, NOPASS :: OOPSIMadeAMistake =&amp;gt; oops
  END TYPE K
  TYPE, EXTENDS(Parent) :: L
  CONTAINS
    PROCEDURE, NOPASS :: OOPSIMadeAMistake =&amp;gt; oops
  END TYPE L
CONTAINS
  SUBROUTINE oops
  END SUBROUTINE oops
END MODULE m
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;PRE class="brush:plain;"&gt;&amp;gt;ifort /check:all /warn:all /standard-semantics "2015-09-02 oops.f90"
Intel(R) Visual Fortran Intel(R) 64 Compiler for applications running on Intel(R) 64, Version 16.0 Build 20150815
Copyright (C) 1985-2015 Intel Corporation.  All rights reserved.

2015-09-02 oops.f90: error #8322: A deferred binding is inherited by non-abstract type; It must be overridden.   [OOPSIMADEAMISTAKE]
compilation aborted for 2015-09-02 oops.f90 (code 1)&lt;/PRE&gt;

&lt;P&gt;&lt;BR /&gt;
	Ta.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2015 11:03:38 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009435#M105571</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2015-09-02T11:03:38Z</dc:date>
    </item>
    <item>
      <title>I must not have had enough</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009436#M105572</link>
      <description>&lt;P&gt;I must not have had enough coffee this morning - I can't spot the error. It looks to me as if all the extensions override the deferred binding. What am I overlooking?&lt;/P&gt;

&lt;P&gt;As for location information, even if you have everything in the same program unit, the location points to the deferred binding which is not useful. I am sure we can do something better here, but I need to understand where the real problem is. Please help!&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2015 14:41:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009436#M105572</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-09-02T14:41:40Z</dc:date>
    </item>
    <item>
      <title>Steve, I think that's Ian's</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009437#M105573</link>
      <description>&lt;P&gt;Steve, I think that's&amp;nbsp;Ian's point :-)&lt;/P&gt;

&lt;P&gt;(Hint: Check the declaration of subroutine I ... carefully)&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2015 15:46:33 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009437#M105573</guid>
      <dc:creator>Lorri_M_Intel</dc:creator>
      <dc:date>2015-09-02T15:46:33Z</dc:date>
    </item>
    <item>
      <title>Gfortran gives the line</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009438#M105574</link>
      <description>&lt;P&gt;Gfortran gives the line number (47), but the error message itself still had me scratching my head and rubbing my eyes.&amp;nbsp; We need the help of a suitable font to see the problem.&lt;/P&gt;

&lt;PRE class="brush:bash;"&gt; cat -n naughtyian.f90 | grep -C2 47
    45      PROCEDURE, NOPASS :: OOPSIMadeAMistake =&amp;gt; oops
    46    END TYPE H
    47    TYPE, EXTENDS(Parent) :: I
    48    CONTAINS
    49      PROCEDURE, NOPASS :: O0PSIMadeAMistake =&amp;gt; oops
                                  ^
                                  |
                                  |
&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2015 16:03:39 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009438#M105574</guid>
      <dc:creator>mecej4</dc:creator>
      <dc:date>2015-09-02T16:03:39Z</dc:date>
    </item>
    <item>
      <title>I understood Ian's point, my</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009439#M105575</link>
      <description>&lt;P&gt;I understood Ian's point, my tired eyes didn't catch what the error was.&lt;/P&gt;

&lt;P&gt;I'll definitely pass this on to the developers. Issue ID is&amp;nbsp;DPD200375685.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2015 16:41:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009439#M105575</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-09-02T16:41:00Z</dc:date>
    </item>
    <item>
      <title>Ok, here's what the next</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009440#M105576</link>
      <description>&lt;P&gt;Ok, here's what the next major release will say:&lt;/P&gt;

&lt;PRE class="brush:plain;"&gt;U591282.f90: error #8322: A deferred binding is inherited by non-abstract type;
It must be overridden.   [OOPSIMADEAMISTAKE]
U591282.f90(47): error #6136: Derived-type declared must be ABSTRACT   &lt;I&gt;
  TYPE, EXTENDS(Parent) :: I
---------------------------^&lt;/I&gt;&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2015 16:54:18 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009440#M105576</guid>
      <dc:creator>Steven_L_Intel1</dc:creator>
      <dc:date>2015-11-05T16:54:18Z</dc:date>
    </item>
    <item>
      <title>W0nderful, thanks.</title>
      <link>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009441#M105577</link>
      <description>&lt;P&gt;W0nderful, thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Nov 2015 18:59:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Intel-Fortran-Compiler/Identifying-location-in-source-with-error-8322-missing-deferred/m-p/1009441#M105577</guid>
      <dc:creator>IanH</dc:creator>
      <dc:date>2015-11-05T18:59:34Z</dc:date>
    </item>
  </channel>
</rss>

