// Example A class Test { int Value; } void main(string[] args) { Test t;t.Value++; // No compiler error, or warning. Runtime error!}
//Test t; Test t = new Test;
codephantom via Digitalmars-d Thu, 16 Nov 2017 18:15:44 -0800
// Example A class Test { int Value; } void main(string[] args) { Test t;t.Value++; // No compiler error, or warning. Runtime error!}
//Test t; Test t = new Test;