blob: dd81a47e3b0c014d6040a6951c2d71499720ad67 [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.animate(withDuration: 1, delay: 1, options: UIViewAnimationOptions.layoutSubviews,
animations: { print("animating") },
completion: { (finished: Bool) -> Void in print("here we are") });
UIView.animate(withDuration: 1, delay: 1, options: UIViewAnimationOptions.layoutSubviews,
animations: { print("animating") },
completion: nil);
}
}