mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
13 lines
257 B
Swift
13 lines
257 B
Swift
// RUN: not %target-swift-frontend -emit-ir -primary-file %s
|
|
|
|
// https://github.com/apple/swift/issues/47591
|
|
|
|
struct Version {
|
|
}
|
|
|
|
extension CountableRange where Bound == Version {
|
|
func contains(_ element: Version) -> Bool {
|
|
fatalError()
|
|
}
|
|
}
|