mirror of
https://github.com/github/codeql.git
synced 2026-01-24 03:42:59 +01: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)
|