``` class Foo<T>() { fun bar(): T { ... } } ...
# random
z
Copy code
class Foo<T>() { fun bar(): T { ... } }
var foo = mock<Foo<Int>>(RETURN_DEEP_STUBS)
assert(foo.bar() is Int)