Files
swift-mirror/test/IRGen/extension_conformance_anyobject_conformance.swift
Michael Gottesman fd4828e40a Eliminate -assume-parsing-unqualified-ownership-sil from tests.
I am doing this separately from the actual change to eliminate the option to
make it easier to review.
2018-12-19 12:54:13 -08:00

11 lines
254 B
Swift

// 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 {
}