We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Subj.
class Main { static function main() { var a = Std.int((1 : UInt) / 1); } }
generates:
int a = ( ((uint) (1) ) / 1 );
which gives c# compilation error:
error CS0266: Cannot implicitly convert type 'uint' to 'int'. An explicit conversion exists (are you missing a cast?)
Activity