mirror of
https://github.com/krgamestudios/Toy.git
synced 2026-04-15 14:54:07 +10:00
14 lines
194 B
Plaintext
14 lines
194 B
Plaintext
//test int -> float coercion
|
|
{
|
|
var f: float = 0;
|
|
|
|
assert typeof f == float, "coercion on decl failed";
|
|
|
|
f = 42;
|
|
|
|
assert typeof f == float, "coercion on assign failed";
|
|
}
|
|
|
|
|
|
print "All good";
|