blob: 6779e81c4600a07768bee3c2e84131b4ae9ba99f [file] [log] [blame]
// RUN: %target-build-swift -Xfrontend %clang-importer-sdk %s -emit-ir
// REQUIRES: executable_test
// REQUIRES: objc_interop
import UIKit
class MyView: UIView {
func foo() {
UIView.animateWithDuration(1, delay: 1, options: UIViewAnimationOptions.LayoutSubviews,
animations: { print("animating") },
completion: { (finished: Bool) -> Void in print("here we are") });
UIView.animateWithDuration(1, delay: 1, options: UIViewAnimationOptions.LayoutSubviews,
animations: { print("animating") },
completion: nil);
}
}