Avatar
Avatar
treastrain / Tanaka.R
@swift-5.10.1 @swift-6.0.3 import Foundation protocol HogeProtocol: Equatable { static var aaa: Self { get } static var bbb: Self { get } } extension HogeProtocol { static func == (lhs: Self, rhs: Self) -> Bool { return lhs == rhs } } enum Hoge: HogeProtocol { case aaa case bbb } let hoge: (some HogeProtocol) = Hoge.aaa switch hoge { case .aaa: print("aaa") case .bbb: print("bbb") default: print("default") }
exit status: 139 with Stack dump: 0. Program arguments: /usr/bin/swift-frontend -frontend -interpret - -disable-objc-interop -empty-abi-descriptor -resource-dir /usr/lib/swift -module-name main -plugin-path /usr/lib/swift/host/plugins -plugin-path /usr/local/lib/swift/host/plugins 1. Swift version 6.0 (swift-6.0-RELEASE)
10.58 KB