21 lines
488 B
Python
21 lines
488 B
Python
import stdio
|
||
import t, c
|
||
|
||
|
||
# ============================================================
|
||
# 负向测试定义模块:定义 SecretClass
|
||
#
|
||
# 此文件定义 SecretClass,但 main.py 不 import 它。
|
||
# 严格模式下 main.py 中的 SecretClass() 构造应编译失败。
|
||
# ============================================================
|
||
|
||
|
||
class SecretClass:
|
||
val: t.CInt
|
||
|
||
def __init__(self, v: t.CInt):
|
||
self.val = v
|
||
|
||
def GetVal(self) -> t.CInt:
|
||
return self.val
|