We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4617828 commit ddc997eCopy full SHA for ddc997e
test/ClangImporter/pch-bridging-header.swift
@@ -0,0 +1,11 @@
1
+// RUN: rm -rf %t && mkdir -p %t
2
+// RUN: %target-swift-frontend -emit-pch -o %t/sdk-bridging-header.pch %S/Inputs/sdk-bridging-header.h
3
+// RUN: %target-swift-frontend -parse -verify %s -import-objc-header %t/sdk-bridging-header.pch
4
+// REQUIRES: objc_interop
5
+
6
+import Foundation
7
8
+let not = MyPredicate.not()
9
+let and = MyPredicate.and([])
10
+let or = MyPredicate.or([not, and])
11
0 commit comments