4 lines
137 B
Text
4 lines
137 B
Text
#define APPLY(F : [.], X) F(X)
|
|
APPLY(FOO, 42)
|
|
(* invalid because APPLY expects a macro as an argument:
|
|
but FOO is not defined. *)
|