Files
swift-mirror/validation-test/compiler_crashers_2_fixed/0037-SILWitnessVisitor.swift

12 lines
170 B
Swift

// RUN: not %target-swift-frontend %s -emit-silgen
protocol FooType {
func bar(b: Int)
}
extension FooType {
func bar(a: Int, b: Int) {}
}
struct Foo : FooType {}