blob: 65f5aae8d8fde1c1f3feb1e487fb10efa384f545 [file] [log] [blame]
// RUN: %target-swift-frontend -typecheck %S/Inputs/default-witness.swift -primary-file %s -enable-resilience
public protocol GraphType {
func insert<U>(_: GraphNode<U>, _: GraphNode<U>)
}
public extension GraphType {
func insert<N: Node>(_: N, _: GraphNode<N.Output>) {}
}