mirror of
https://github.com/apple/swift-protobuf.git
synced 2026-06-16 10:24:34 +00:00
e41d3f0c93
### Motivation: Swift 5.9 is no longer supported, we should bump the tools version ### Modifications: * Bump the Swift tools version to Swift 5.10 * Remove unsupported versions from CI in build.yml ### Result: Code reflects the expected support window.
10 lines
298 B
Swift
10 lines
298 B
Swift
import AccessLevelOnImport
|
|
import XCTest
|
|
|
|
final class AccessLevelOnImportTests: XCTestCase {
|
|
func testAccessLevelOnImport() {
|
|
let access = AccessLevelOnImport.with { $0.dependency = .with { $0.name = "Dependency" } }
|
|
XCTAssertEqual(access.dependency.name, "Dependency")
|
|
}
|
|
}
|