Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
toString() is not a property.
Browse files Browse the repository at this point in the history
  • Loading branch information
dnadlinger committed Dec 1, 2011
1 parent 70f5abd commit 07a59e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/time.d
Expand Up @@ -2596,9 +2596,9 @@ public:
auto fs = FracSec(12);
const cfs = FracSec(12);
immutable ifs = FracSec(12);
assert(fs.toString == "12 hnsecs");
assert(cfs.toString == "12 hnsecs");
assert(ifs.toString == "12 hnsecs");
assert(fs.toString() == "12 hnsecs");
assert(cfs.toString() == "12 hnsecs");
assert(ifs.toString() == "12 hnsecs");
}


Expand Down

0 comments on commit 07a59e7

Please sign in to comment.