Commits

Joe Groff committed 804f78bfa8c
Runtime: Don't leak bridged object when value-to-bridged-object cast fails. Fixes a leak when a bridgeable value type is dynamically cast to a class type, and the cast fails, for instance: ``` let x: Any = "string" x is NSNumber ``` We would fail to release the bridging object after attempting the cast.