Files
swift-mirror/validation-test/compiler_crashers_2/dd784376d0f127e9.swift
2025-06-23 10:05:22 +01:00

11 lines
301 B
Swift

// {"signature":"swift::GenericSignatureImpl::prohibitsIsolatedConformance(swift::Type) const"}
// RUN: not --crash %target-swift-frontend -typecheck %s
protocol a {
associatedtype b
typealias c = a
}
struct d : e
protocol e : a {
associatedtype c where b == c.b
associatedtype f = Self