summaryrefslogtreecommitdiff
path: root/python/testData/intentions/afterReturnTypeInDocstring.py
blob: d3d1bd206a427729fd49af548ac35af08280dd50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
def f(x):
    """

    :rtype : object
    """
    pass


def g(x):
    y = x
    f(x)  # (1)
    f(y)  # (2)