[Issue 2512] ParameterTypeTuple do not support opCall

2015-06-08 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=2512

Andrei Alexandrescu and...@erdani.com changed:

   What|Removed |Added

Version|2.021   |D2

--


[Issue 2512] ParameterTypeTuple do not support opCall

2010-05-19 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=2512


Haruki Shigemori rayerd@gmail.com changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED


--- Comment #2 from Haruki Shigemori rayerd@gmail.com 2010-05-19 09:08:52 
PDT ---
ParameterTypeTuple supported opCall already.
This code compiles and runs fine on dmd v.2.046.

import std.traits;
class C {
int opCall(int,double){return 1;}
}
struct S {
int opCall(int,long){return 1;}
}
void main() {
static assert(is(ParameterTypeTuple!(C)[0] == int));
static assert(is(ParameterTypeTuple!(S)[1] == long));
C c;
static assert(is(ParameterTypeTuple!(c)[1] == double));
S s;
static assert(is(ParameterTypeTuple!(s)[0] == int));
}

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