Created
September 19, 2018 22:18
-
-
Save harlanhaskins/f686af8de45b7ba485ec55fdd7f3bc69 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// RUN: %empty-directory(%t) | |
// RUN: %target-swift-frontend -emit-module -o %t/Test~partial.swiftmodule -module-name Test -primary-file %s | |
// RUN: %target-swift-frontend -merge-modules -emit-module -o %t/Test.swiftmodule %t/Test~partial.swiftmodule | |
// RUN: %target-swift-ide-test -print-module -module-to-print=Test -source-filename=x -I %t | %FileCheck %s | |
// RUN: %target-swift-frontend -emit-interface-path %t.swiftinterface -enable-resilience -emit-module -o /dev/null %s | |
// RUN: %FileCheck %s < %t.swiftinterface | |
// CHECK: func hasClosureDefaultArg(_ x: () -> Void = { | |
// CHECK-NEXT: }) | |
public func hasClosureDefaultArg(_ x: () -> Void = { | |
}) { | |
} | |
// CHECK: func hasClosureDefaultArgWithComplexNestedPoundIfs(_ x: () -> Void = { | |
// CHECK-NOT: #if NOT_PROVIDED | |
// CHECK-NOT: print("should not exist") | |
// CHECK-NOT: #elseif !NOT_PROVIDED | |
// CHECK: let innerClosure = { | |
// CHECK-NOT: #if false | |
// CHECK-NOT: print("should also not exist") | |
// CHECK-NOT: #else | |
// CHECK: print("should exist") | |
// CHECK-NOT: #endif | |
// CHECK: } | |
// CHECK-NOT: #endif | |
// CHECK: }) | |
public func hasClosureDefaultArgWithComplexNestedPoundIfs(_ x: () -> Void = { | |
#if NOT_PROVIDED | |
print("should not exist") | |
#elseif !NOT_PROVIDED | |
let innerClosure = { | |
#if false | |
print("should also not exist") | |
#else | |
print("should exist") | |
#endif | |
} | |
#endif | |
}) { | |
} | |
// CHECK: func hasClosureDefaultArgWithComplexPoundIf(_ x: () -> Void = { | |
// CHECK-NOT: #if NOT_PROVIDED | |
// CHECK-NOT: print("should not exist") | |
// CHECK-NOT: #else | |
// CHECK-NOT: #if NOT_PROVIDED | |
// CHECK-NOT: print("should also not exist") | |
// CHECK-NOT: #else | |
// CHECK: print("should exist"){{$}} | |
// CHECK-NOT: #if !second | |
// CHECK: print("should also exist"){{$}} | |
// CHECK-NOT: #endif | |
// CHECK-NEXT: }) | |
public func hasClosureDefaultArgWithComplexPoundIf(_ x: () -> Void = { | |
#if NOT_PROVIDED | |
print("should not exist") | |
#else | |
#if NOT_PROVIDED | |
print("should also not exist") | |
#else | |
print("should exist") | |
#endif | |
#endif | |
#if !second | |
print("should also exist") | |
#endif | |
}) { | |
} | |
// CHECK: func hasClosureDefaultArgWithSinglePoundIf(_ x: () -> Void = { | |
// CHECK-NOT: #if true | |
// CHECK: print("true") | |
// CHECK-NOT: #else | |
// CHECK-NOT: print("false") | |
// CHECK-NOT: #endif | |
// CHECK-NEXT: }) | |
public func hasClosureDefaultArgWithSinglePoundIf(_ x: () -> Void = { | |
#if true | |
print("true") | |
#else | |
print("false") | |
#endif | |
}) { | |
} | |
// CHECK: func hasSimpleDefaultArgs(_ x: Int = 0, b: Int = 1) | |
public func hasSimpleDefaultArgs(_ x: Int = 0, b: Int = 1) { | |
} | |
// CHECK: func hasArrayDefaultArg(_ x: [Int] = [ | |
// CHECK-NEXT: 1, 2, | |
// CHECK-NOT: #if NOT_PROVIDED | |
// CHECK-NOT: 3, | |
// CHECK-NOT: #endif | |
// CHECK-NOT: 4, | |
// CHECK-NOT: #if !NOT_PROVIDED | |
// CHECK: 5, | |
// CHECK-NOT: #else | |
// CHECK-NOT: 6, | |
// CHECK-NOT: #endif | |
// CHECK: 7 | |
// CHECK-NEXT: ]){{$}} | |
public func hasArrayDefaultArg(_ x: [Int] = [ | |
1, 2, | |
#if NOT_PROVIDED | |
3, | |
#endif | |
4, | |
#if !NOT_PROVIDED | |
5, | |
#else | |
6, | |
#endif | |
7 | |
]) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment