def bar():
... # OK
pass # OK
"""oof""" # OK
def oof(): # ERROR PYI048
"""oof"""
print("foo")
def foo(): # ERROR PYI048
"""foo"""
def buzz(): # ERROR PYI048
print("fizz")
print("buzz")
print("test")