File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,10 @@ let concurrencyChecking: [SwiftSetting] = [
4040 . enableUpcomingFeature( " InferSendableFromCaptures " )
4141]
4242
43+ let keypathWithMethodMembers : [ SwiftSetting ] = [
44+ . enableExperimentalFeature( " keypathWithMethodMembers " )
45+ ]
46+
4347var dependencies : [ Package . Dependency ] {
4448 if Context . environment [ " SWIFTCI_USE_LOCAL_DEPS " ] != nil {
4549 [
@@ -198,7 +202,7 @@ let package = Package(
198202 exclude: [ " CMakeLists.txt " ] ,
199203 swiftSettings: [
200204 . enableExperimentalFeature( " AccessLevelOnImport " )
201- ] + availabilityMacros + concurrencyChecking
205+ ] + availabilityMacros + concurrencyChecking + keypathWithMethodMembers
202206 ) ,
203207 ]
204208)
@@ -217,3 +221,5 @@ package.targets.append(contentsOf: [
217221 )
218222] )
219223#endif
224+
225+
You can’t perform that action at this time.
0 commit comments