blob: fca01a1986c96c4f027e1a896c9cf573cbf0406c [file] [log] [blame]
# TODO(go): Fix
A := a # comment
ifdef $(A)
$(error FAIL)
else
$(info PASS)
endif
a := b
ifdef $(A)
$(info PASS)
else
$(error FAIL)
endif
ifdef a # comment
$(info PASS)
else
$(error FAIL)
endif