Support Swift version 5.7.3 (#4711)

This commit is contained in:
Danny Mösch 2023-01-19 21:35:41 +01:00 committed by GitHub
parent c9791783ba
commit 341db66f3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -5,6 +5,8 @@ final class SwiftVersionTests: XCTestCase {
func testDetectSwiftVersion() {
#if compiler(>=6.0.0)
let version = "6.0.0"
#elseif compiler(>=5.7.3)
let version = "5.7.3"
#elseif compiler(>=5.7.2)
let version = "5.7.2"
#elseif compiler(>=5.7.1)