Sign in
android
/
platform
/
external
/
python
/
typing
/
fd421e9
/
.
/
python2
/
mod_generics_cache.py
blob: d9a60b4b28c325aea1b82fe888504c7491095b67 [
file
] [
log
] [
blame
]
"""Module for testing the behavior of generics across different modules."""
from
typing
import
TypeVar
,
Generic
T
=
TypeVar
(
'T'
)
class
A
(
Generic
[
T
]):
pass
class
B
(
Generic
[
T
]):
class
A
(
Generic
[
T
]):
pass