Files
CMake/Tests/RunCMake/Syntax/ImproperNesting.cmake
2020-10-22 11:40:48 -04:00

8 lines
99 B
CMake

message(FATAL_ERROR "This should not happen")
foreach(i 1 2)
if(1)
endforeach()
endif()
endif()