Thread overview
[Issue 7731] New: Assertion failure: 't' on line 7911 in file 'mtype.c'
Mar 19, 2012
Dmitry Olshansky
Mar 24, 2012
Kenji Hara
Mar 25, 2012
Walter Bright
March 19, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7731

           Summary: Assertion failure: 't' on line 7911 in file 'mtype.c'
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: dmitry.olsh@gmail.com


--- Comment #0 from Dmitry Olshansky <dmitry.olsh@gmail.com> 2012-03-19 06:27:50 PDT ---
That's the exact output of dmd 2.059head, on win 7: Assertion failure: 't' on line 7911 in file 'mtype.c'

abnormal program termination

//code
struct A{
  int a;
}

template Inherit(alias X)
{
  X __super;
  alias __super this;
}

struct B{
  mixin Inherit!A;
  int b;
}

struct PolyPtr(X)
{
    X* _payload;
    static if(is(typeof(X.init.__super)))
    {
        alias typeof(X.init.__super) Super;
        @property auto getSuper(){ return PolyPtr!Super(&_payload.__super); }
        alias getSuper this;
    }
//    alias _payload this;//multiple alias this, sigh
    auto opDispatch(string s)(){ return mixin("_payload."~s); }
}

template create(X)
{
    PolyPtr!X create(X, T...)(T args){
        return PolyPtr!X(args);
    }
}

void f1(PolyPtr!A a) {/*...*/}
void f2(PolyPtr!B b) {f1(b);/*...*/}

void main(){
    auto b = create!B();
}

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
March 24, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7731


Kenji Hara <k.hara.pg@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |ice, pull
           Severity|normal                      |major


--- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2012-03-24 01:47:36 PDT ---
https://github.com/D-Programming-Language/dmd/pull/833

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
March 25, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7731



--- Comment #2 from github-bugzilla@puremagic.com 2012-03-24 21:17:50 PDT ---
Commit pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/daeed10cdda3bf21e697002944ed09e56cad76b3 Merge pull request #833 from 9rnsr/fix7731

Issue 7731 - Assertion failure: 't' on line 7911 in file 'mtype.c'

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
March 25, 2012
http://d.puremagic.com/issues/show_bug.cgi?id=7731


Walter Bright <bugzilla@digitalmars.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |bugzilla@digitalmars.com
         Resolution|                            |FIXED


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