[Issue 8780] std.traits.ReturnType of overloaded functions

2018-04-19 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8780 Simen Kjaeraas changed: What|Removed |Added Status|NEW |RESOLVED

[Issue 8780] std.traits.ReturnType of overloaded functions

2012-11-15 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8780 Denis Shelomovskij verylonglogin@gmail.com changed: What|Removed |Added Keywords|

[Issue 8780] std.traits.ReturnType of overloaded functions

2012-10-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8780 --- Comment #1 from luka8088 luka8...@owave.net 2012-10-08 03:44:04 PDT --- module program; import std.stdio; import std.traits; class a {} class b {} int f1 (a o) { return 1; } string f1 (b o) { return 2; } void main () { a a1 = new a();

[Issue 8780] std.traits.ReturnType of overloaded functions

2012-10-08 Thread d-bugmail
http://d.puremagic.com/issues/show_bug.cgi?id=8780 --- Comment #2 from luka8088 luka8...@owave.net 2012-10-08 04:04:34 PDT --- I am sorry for such bad description but it seems to me that there are multiple bugs here and I am not sure where the problem is - or even if there is one. Free free to