mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
20 lines
342 B
Python
20 lines
342 B
Python
"""
|
|
Test case for #11387 corner case involving inherited
|
|
members with type annotations on python 3.9 and earlier
|
|
"""
|
|
|
|
|
|
class HasTypeAnnotatedMember:
|
|
inherit_me: int
|
|
"""Inherited"""
|
|
|
|
|
|
class NoTypeAnnotation(HasTypeAnnotatedMember):
|
|
a = 1
|
|
"""Local"""
|
|
|
|
|
|
class NoTypeAnnotation2(HasTypeAnnotatedMember):
|
|
a = 1
|
|
"""Local"""
|