blob: 68cf0e8531a2f0ba8f006f67cca0bbd40322b7c6 [file] [log] [blame]
// RUN: %target-swift-frontend -enable-sil-ownership -sil-verify-all -emit-sil %s -o /dev/null -verify
// REQUIRES: objc_interop
import Foundation
@_transparent public func a(_ condition: @autoclosure () -> Bool) {
_ = condition()
}
func callsA() {
let x = (2 as NSNumber) as AnyObject
a(x.isEqual(2))
}