6 lines
72 B
Python
6 lines
72 B
Python
from typing import TypeVar
|
|
|
|
T = TypeVar('T')
|
|
|
|
def const(x: T) -> T: ...
|