blob: 9a27383e0aedc5df3ef9b17d9592025e14d04077 [file] [log] [blame]
// RUN: %target-swift-frontend -emit-ir -verify %s
public struct TestGeneratorCrashy <Key: AnyObject, Value: AnyObject> {
public mutating func next() -> (Key, Value)? {
return nil
}
}
extension TestGeneratorCrashy: IteratorProtocol {
}