summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/Syntax/ImproperNesting.cmake
blob: 47ff9f90b853b1641e1eef1387ed0715bd641698 (plain)
1
2
3
4
5
6
7
message(FATAL_ERROR "This should not happen")

foreach(i 1 2)
  if(1)
endforeach()
endif()
endif()