Amend cast doc to account for dynamic class casts

This commit is contained in:
FeepingCreature 2013-09-08 13:12:45 +02:00
parent c38f2c1deb
commit ff6cf18364

View File

@ -83,7 +83,7 @@ void main(string[] args) {
// (implicit casts)
float f = float:5;
float f2 = 5; // would also work
// casts that require throwing away information -
// casts that require throwing away information or complicated computation -
// those must always be done explicitly
// (conversion casts)
int i = int:f;