www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.bugs - [Issue 12302] New: Assertion failure in expression.c (line 432) when using template isCallable

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

           Summary: Assertion failure in expression.c (line 432)  when
                    using template isCallable
           Product: D
           Version: D2
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P2
         Component: DMD
        AssignedTo: nobody puremagic.com
        ReportedBy: goldmax3000 gmail.com



DMD 2.065 

class A
{
 X x; 
 struct X 
 {
  int f() { return 1; }
 }
 auto opDispatch(string s, TArgs...)(TArgs args)
 {
  mixin("return x."~s~"(args);");
 }
}
A func() { return null; }
pragma(msg, isCallable!func); // Error

The compilation failed with error:
dmd: expression.c:432: Expression* resolvePropertiesX(Scope*, Expression*,
Expression*): Assertion `fd->type->ty == Tfunction' failed.

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Mar 06 2014
next sibling parent d-bugmail puremagic.com writes:
https://d.puremagic.com/issues/show_bug.cgi?id=12302


Vladimir Panteleev <thecybershadow gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|                            |pull
                 CC|                            |thecybershadow gmail.com



21:50:07 EET ---
https://github.com/D-Programming-Language/dmd/pull/3366

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Mar 07 2014
prev sibling next sibling parent d-bugmail puremagic.com writes:
https://d.puremagic.com/issues/show_bug.cgi?id=12302




Commits pushed to master at https://github.com/D-Programming-Language/dmd

https://github.com/D-Programming-Language/dmd/commit/df44feed6de7e7392d2a7b42c6a72ec385702c3a
fix Issue 12302 - Assertion failure in expression.c (line 432) when using
template isCallable

https://github.com/D-Programming-Language/dmd/commit/3e086a6ee3c99f35a28ea2595654dd59aa01deee


fix Issue 12302 - Assertion failure in expression.c (line 432) when using
template isCallable

-- 
Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
Mar 09 2014
prev sibling parent d-bugmail puremagic.com writes:
https://d.puremagic.com/issues/show_bug.cgi?id=12302


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

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


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