mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
This helps maintain invariants, such as the presence of a generic parameter list implying the presence of a generic signature. Fixes <rdar://problem/45317855>.
9 lines
199 B
Swift
9 lines
199 B
Swift
// RUN: not %target-swift-frontend -emit-ir %s
|
|
|
|
public final class Action<Input, Error: Swift.Error> {
|
|
|
|
extension Action {
|
|
|
|
public enum ActionError<Error: Swift.Error>: Swift.Error {
|
|
case disabled
|