blob: 95a3a4cad133a3b3afebf666c740da2a1c76fd93 [file] [log] [blame]
// 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 {}