snapshot before regression test

This commit is contained in:
t
2026-07-18 19:25:40 +08:00
commit 796222a300
2295 changed files with 206453 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
"""
Auto-generated Python stub file from oop_test.py
Module: oop_test
"""
import stdio
import t, c
class Point:
x: t.CInt
y: t.CInt
def MoveTo(self: Point, nx: t.CInt, ny: t.CInt) -> t.CInt: pass
def GetX(self: Point) -> t.CInt: pass
def GetY(self: Point) -> t.CInt: pass
class Counter:
count: t.CInt = 0
step: t.CInt = 1
def Increment(self: Counter) -> t.CInt: pass
def Reset(self: Counter) -> t.CInt: pass
class Rect:
width: t.CInt
height: t.CInt
def __init__(self: Rect, w: t.CInt, h: t.CInt) -> t.CInt: pass
def Area(self: Rect) -> t.CInt: pass
def oop_test() -> int: pass