Home | History | Annotate | Download | only in testcase
      1 # When a line only has semicolons after variables are expanded, they
      2 # are silently ignored, for some reason.
      3 SEMI:=;
      4 $(SEMI)
      5 $(SEMI) $(SEMI)
      6 
      7 $(foreach v,x,;)
      8 
      9 test:
     10 	echo PASS
     11