mirror of
https://github.com/github/codeql.git
synced 2026-03-31 20:58:16 +02:00
11 lines
143 B
Python
11 lines
143 B
Python
class X:
|
|
|
|
def iUseY(y):
|
|
y.doStuff()
|
|
|
|
def soDoY():
|
|
return Y()
|
|
|
|
def iUseZ(z1, z2):
|
|
return z1.combine(z2)
|