Files
swift-mirror/test/multifile/default-witness.swift
2019-03-14 22:24:26 -04:00

11 lines
292 B
Swift

// 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>) {}
}