www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 4931] New: Implicit opCast!bool in if statement doesn't work with declarator

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

           Summary: Implicit opCast!bool in if statement doesn't work with
                    declarator
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Keywords: patch
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: rsinfu gmail.com



---
Created an attachment (id=772)
Patch against dmd r686

If an if statement has a variable declarator, a condition is implicitly
converted to bool before its value is assigned to the declared variable.  The
following code doesn't compile:
--------------------
void main()
{
    if (S s = S()) {}   // (3)
}
struct S
{
    bool opCast(T : bool)() { return true; }
}
--------------------
% dmd -o- -c test.d
test.d(3): Error: cannot implicitly convert expression (S().opCast()) of type
bool to S

-- 
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Sep 23 2010
parent d-bugmail puremagic.com writes:
http://d.puremagic.com/issues/show_bug.cgi?id=4931


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

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |k.hara.pg gmail.com
         Resolution|                            |FIXED



Patch was already applied at
https://github.com/D-Programming-Language/dmd/commit/69349699a8f770c6e06b440dfd1822c50826136a
by Don Clugston.

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