www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 2566] New: compiler segfault from TypeTuple

reply d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2566

           Summary: compiler segfault from TypeTuple
           Product: D
           Version: 1.038
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: bugzilla digitalmars.com
        ReportedBy: site.puremagic.com brianguertin.com


// dmd 1.038 & 1.039 segfault on this code:

import std.typetuple;

class Foo(T, U) {
        int bar(T t, U u) {
        }
}
void foo(TP ...)() {
        auto f = new Foo!(TP);
}

void main() {
        foo!(TypeTuple!(int,float))();
}

// dmd 1.037 properly reports an error:
test.d(6): function test.Foo!(int,float).Foo.bar expected to return a value of
type int
test.d(10): template instance test.Foo!(int,float) error instantiating
test.d(14): template instance test.foo!(int,float) error instantiating


-- 
Jan 07 2009
next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2566


clugdbug yahoo.com.au changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|normal                      |regression
            Summary|compiler segfault from      |compiler ICE from TypeTuple
                   |TypeTuple                   |





No longer segfaults in DMD 1.042, now it's an ICE with

Assertion failure: 'i < parameters->dim' on line 806 in file 'template.c'

abnormal program termination

In DMD2.027, it produces:
fog.d(7): Error: template fog.foo(TP...) declaration TP is already defined

which doesn't seem correct.


-- 
Apr 03 2009
prev sibling next sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2566


clugdbug yahoo.com.au changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Severity|regression                  |normal
            Summary|compiler ICE from TypeTuple |Regression:compiler ICE from
                   |                            |TypeTuple





Changing severity, since it never actually compiled.


-- 
Apr 03 2009
prev sibling parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=2566


clugdbug yahoo.com.au changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|                            |DUPLICATE





Actually it's a duplicate!

*** This bug has been marked as a duplicate of 2229 ***


-- 
Apr 03 2009