[Issue 3629] New: Immutable/shared disappear in circular module imports

d-bugmail at puremagic.com d-bugmail at puremagic.com
Thu Dec 17 14:28:25 PST 2009


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

           Summary: Immutable/shared disappear in circular module imports
           Product: D
           Version: 2.036
          Platform: x86
        OS/Version: Windows
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody at puremagic.com
        ReportedBy: tomeksowi at gmail.com


--- Comment #0 from Tomasz Sowiński <tomeksowi at gmail.com> 2009-12-17 14:28:24 PST ---
Testcase (should pass):
----------------------------------------------
module hello;
import test;

struct Strukt {
    Staly* s;
}
----------------------------------------------
module test;
import hello;

immutable struct Staly {
    int a;
}

void f_strukt(Strukt* stk) {
    f_staly(stk.s);    // ups!
}

void f_staly(Staly* s) { }
----------------------------------------------
Error: function test.f_staly (immutable(Staly)* s) is not callable using
argument types (Staly*)
Error: cannot implicitly convert expression ((*stk).s) of type Staly* to
immutable(Staly)*

Same story if Staly is shared.

-- 
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