Files
swift-mirror/validation-test/compiler_crashers_fixed/0082-rdar30354669.swift
Hamish Knight 4e811c3a88 [test] Merge crasher directories
There is no longer much of a good reason to keep these separate,
merge them.
2025-10-18 12:51:30 +01:00

31 lines
627 B
Swift

// RUN: %target-swift-frontend -primary-file %s -emit-ir
public func ==<T: EquatableMetaType>(lhs: T, rhs: T) -> Bool {
return type(of: lhs) == type(of: lhs)
}
public protocol EquatableMetaType {
}
class Block : Equatable, EquatableMetaType {
}
extension Array where Element : Block {
func indexByType(of: Element) -> Array.Index? {
let count = self.count
var result: Array.Index = 0
for i in self {
if i == of {
return result
}
if result < count {
result += 1
}
}
return nil
}
}