#
#   Test cocall to static method
#

class C:

	@staticmethod
	#codef m(*args):
	codef m(args):
		print("m:", args)
		yield "ham"

codef f():
	C.m("eggs")

g = f.__cocall__()
print(next(g))
