Fixed AS3 - direct editation - bit not

This commit is contained in:
Jindra Petřík
2021-12-04 15:15:47 +01:00
parent c1dd430f43
commit 7599ba5dd0
9 changed files with 57 additions and 2 deletions

View File

@@ -77,6 +77,7 @@ package
TestMultipleCondition;
TestNamedAnonFunctions;
TestNames;
TestNegate;
TestNumberCall;
TestOptionalParameters;
TestParamNames;

View File

@@ -0,0 +1,12 @@
package tests
{
public class TestNegate
{
public function run():void
{
var a:int = 5;
var b:int = ~a;
}
}
}