mirror of
https://github.com/github/codeql.git
synced 2025-12-30 23:58:15 +01:00
13 lines
151 B
Python
13 lines
151 B
Python
class YX:
|
|
|
|
def iUseY(y):
|
|
y.doStuff()
|
|
|
|
def soDoY():
|
|
return Y()
|
|
|
|
class ZX:
|
|
|
|
def iUseZ(z1, z2):
|
|
return z1.combine(z2)
|