[Issue 3754] New: Templates related bug
d-bugmail at puremagic.com
d-bugmail at puremagic.com
Sat Jan 30 06:02:24 PST 2010
http://d.puremagic.com/issues/show_bug.cgi?id=3754
Summary: Templates related bug
Product: D
Version: 1.056
Platform: x86
OS/Version: Windows
Status: NEW
Severity: normal
Priority: P2
Component: DMD
AssignedTo: nobody at puremagic.com
ReportedBy: borislav.asdf at gmail.com
--- Comment #0 from borislav.asdf at gmail.com 2010-01-30 06:02:23 PST ---
I get these errors DMD 1.055 (it fails in 1.056 too):
(void(char[] _param_0))()
bug.d(2): Error: expected 1 function arguments, not 0
(void(char[] _param_0))()
bug.d(15): Error: template instance bug.Foo!(a) error instantiating
//code----------------------------------------------------------------------------------------------
void Foo(alias X)() {
pragma(msg,typeof(X).stringof);
}
class A {
void a(char[]) {
}
void b() {
}
}
void main() {
Foo!(A.a)(); //doesnt work
Foo!(A.b)(); //works
}
//end of code
----------------------------------------------------------------------
--
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