mirror of
https://github.com/github/codeql.git
synced 2026-01-09 04:30:21 +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)
|