blob: 6e4d2e6f0236e65beac84a407b2a3dc9b46f8cd3 [file] [log] [blame]
// RUN: %target-swift-frontend -parse -verify %s
protocol P {}
class GenericBase<T>: P {}
class Derived: GenericBase<Int> {}
func foo<T: P>(_ x: T) {}
foo(Derived())