1# TODO(go): Fix 2 3A := a # comment 4 5ifdef $(A) 6$(error FAIL) 7else 8$(info PASS) 9endif 10 11a := b 12ifdef $(A) 13$(info PASS) 14else 15$(error FAIL) 16endif 17 18ifdef a # comment 19$(info PASS) 20else 21$(error FAIL) 22endif 23