### Summary ```py class A[T]: init(var t: T) print(T) # error, invalid reference def f(self): print(T) A(1).f() # prints int ```
Summary