Thread overview
[Issue 3641] New: alias shared T U does not work
Dec 24, 2009
Jason House
Dec 25, 2009
Leandro Lucarella
Dec 31, 2009
Walter Bright
December 24, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3641

           Summary: alias shared T U does not work
           Product: D
           Version: 2.036
          Platform: x86
        OS/Version: Linux
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody@puremagic.com
        ReportedBy: jason.james.house@gmail.com


--- Comment #0 from Jason House <jason.james.house@gmail.com> 2009-12-23 17:30:47 PST ---
Sample code
========================
class foo{}
void main(){
    alias shared foo bar; // results in error
    //alias shared(foo) bar; // works
    shared(foo) x = new bar();
}
========================

Result with dmd 2.037
(Bug report lists dmd 2.036 since 2.037 was not an option at the time)

$ dmd test.d
test.d(4): Error: cannot implicitly convert expression (new foo) of type
test.foo to shared(foo)

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


Leandro Lucarella <llucax@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |llucax@gmail.com


--- Comment #1 from Leandro Lucarella <llucax@gmail.com> 2009-12-25 10:01:25 PST ---
http://www.dsource.org/projects/dmd/changeset/307

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
December 31, 2009
http://d.puremagic.com/issues/show_bug.cgi?id=3641


Walter Bright <bugzilla@digitalmars.com> changed:

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


--- Comment #2 from Walter Bright <bugzilla@digitalmars.com> 2009-12-31 11:22:42 PST ---
Fixed dmd 2.038

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