[Issue 8249] New: Spurious error message with templates and alias this

d-bugmail at puremagic.com d-bugmail at puremagic.com
Fri Jun 15 13:07:15 PDT 2012


http://d.puremagic.com/issues/show_bug.cgi?id=8249

           Summary: Spurious error message with templates and alias this
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: minor
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: clugdbug at yahoo.com.au


--- Comment #0 from Don <clugdbug at yahoo.com.au> 2012-06-15 13:09:28 PDT ---
Seems like a lookup is not attempted if an error has previously occurred in the
module. This example comes from template9.d, and was based on bug 7580.
--------
void deliberateError() { int someError = "abc"; }

void fred()(int value) {}

struct YY
{
    int  val;
    @property int get()() { return val; }
    alias get this;
}

void test()
{
    YY y;
    fred(y);
}

bug.d(1): Error: cannot implicitly convert expression ("abc") of type string to
int
bug.d(3): Error: template junk.fred() cannot deduce template function from
argument types !()(YY)

The second error disappears if the first line is commented out.

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------


More information about the Digitalmars-d-bugs mailing list