// RUN: %target-typecheck-verify-swift class Base { class func f(_ arg: T) -> Int { return 0 } } class Derived : Base {} var a = Derived.f(42)