From 50e809ffdd90fc48efc39dc87ec119081c611e72 Mon Sep 17 00:00:00 2001 From: Andrew Cobb Date: Thu, 25 Jun 2026 13:09:03 -0600 Subject: [PATCH] SwiftExtract: fix compiler version check for @nonexhaustive --- Sources/SwiftExtractConfigurationShared/AccessLevelMode.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/SwiftExtractConfigurationShared/AccessLevelMode.swift b/Sources/SwiftExtractConfigurationShared/AccessLevelMode.swift index 89d4325b3..c02caeec0 100644 --- a/Sources/SwiftExtractConfigurationShared/AccessLevelMode.swift +++ b/Sources/SwiftExtractConfigurationShared/AccessLevelMode.swift @@ -18,7 +18,7 @@ /// layer and language-specific configuration layers (e.g. swift-java's /// `SwiftJavaConfigurationShared`) can both depend on it without dragging /// SwiftSyntax into the latter. -#if compiler(>=6.2) +#if compiler(>=6.2.3) @nonexhaustive #endif public enum AccessLevelMode: String, Codable, Sendable {