1! RUN: %flang -E %s | FileCheck %s 2#define A B(c) 3#define B(d) d); call E(d 4#define E(f) G(f) 5!CHECK: call I(c); call G(c) 6call I(A) 7end 8