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