package tests { public class TestIf { public function run():* { var a:* = 5; if (a == 7) { trace("onTrue"); } } } }