prep03
来自「开放源码的编译器open watcom 1.6.0版的源代码」· 代码 · 共 26 行
TXT
26 行
#
# Preprocessor Test 3
#
!ifdef AS # This is a proxy for !if microsoft
all:
!else
all: .symbolic
!endif
# test mpreproc@makeAlphaToken() fills current->data.string only to capacity
module=ABCDEFGHIJKLMNOPQRSTUVWXYZ_abcdefghijklmnopqrstuvwxyz_063_bytes
max=$(module)$(module)$(module)$(module)255
!if exist($(max)) # This fills datum
!endif
!if exist(o$(max)) # This gives a parse error because we overfill
!endif
# exercise error paths in mpreproc@makeFuncToken()
!if defined == "defined"
!endif
!if defunct("league")
!endif
!if defined(
!endif
!if exist(league of nations)
!endif
@echo failed
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?