summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Syntax/FunctionUnmatchedForeach.cmake
blob: ee9c184593407a62265c673ac6b15b966fcc2f8f (plain)
1
2
3
4
5
function(f)
  foreach(i 1)
  #endforeach() # missing
endfunction()
f()