blob: 96978095180a897dc8c6c149f64caf7207b55973 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
;%define UNDEFINED
%macro macro 0
%ifndef UNDEFINED
%rep 1
%fatal This should display "fatal: (m:3)"
%endrep
%endif
%fatal This should display "fatal: (m:6)" if 'UNDEFINED' defined
%endmacro
macro
|