Bug 5245 – Interface function TraceInfo.toString is not implemented
Status
RESOLVED
Resolution
FIXED
Severity
normal
Priority
P2
Component
druntime
Product
D
Version
D2
Platform
All
OS
All
Creation time
2010-11-20T07:21:00Z
Last change time
2011-01-15T11:19:28Z
Assigned to
sean
Creator
ibuclaw
Comments
Comment #0 by ibuclaw — 2010-11-20T07:21:39Z
It's seen in object.di, but not in object_.d, and DefaultTraceInfo doesn't implement toString either.
Comment #1 by ibuclaw — 2010-11-20T07:30:23Z
An example, this is a slimmed down version of the class in core.runtime that doesn't compile on it's own (no public functions were removed).
class DefaultTraceInfo : Throwable.TraceInfo
{
this()
{
}
~this()
{
}
int opApply( scope int delegate(ref char[]) dg )
{
return 0;
}
}
Regards