Files
swift-mirror/test/ClangImporter/objc_curried_method.swift
2018-07-02 21:14:22 -07:00

9 lines
209 B
Swift

// RUN: %target-swift-frontend -typecheck %s -enable-objc-interop -import-objc-header %S/Inputs/objc_curried_method.h
// rdar://problem/32588152
func apply(_: (Foo) -> () -> Void) {}
apply(Foo.someMethod)