mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
These contain a mix of crashers that may or may not crash under non-asserts builds, avoid testing them for non-asserts builds. When fixed, they'll receive non-assert coverage.
7 lines
405 B
Swift
7 lines
405 B
Swift
// {"signature":"swift::RootProtocolConformance::getWitness(swift::ValueDecl*) const"}
|
|
// RUN: not --crash %target-swift-frontend -typecheck %s
|
|
protocol a{typealias b : IteratorProtocol} extension a{typealias Element =
|
|
b.Element} protocol c
|
|
: a{typealias b typealias Element} protocol d
|
|
: c{typealias Element} protocol e : d struct f : e
|