http://d.puremagic.com/issues/show_bug.cgi?id=4433
Summary: object.Error: Access Violation missing file and line
number
Product: D
Version: D2
Platform: Other
OS/Version: Windows
Status: NEW
Keywords: diagnostic
Severity: normal
Priority: P2
Component: DMD
AssignedTo: [email protected]
ReportedBy: [email protected]
CC: [email protected]
--- Comment #0 from Jesse Phillips <[email protected]> 2010-07-06
15:09:51 PDT ---
The error message when accessing a null reference of an object does not provide
file and line number.
void main() {
Foo foo;
foo.run();
}
class Foo {
void run() {}
}
The code above compiles and when run says:
object.Error: Access Violation
--
Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email
------- You are receiving this mail because: -------