cmake/Tests/RunCMake/Syntax/ImproperNesting.cmake

8 lines
99 B
CMake
Raw Normal View History

2021-09-14 00:13:48 +02:00
message(FATAL_ERROR "This should not happen")
foreach(i 1 2)
if(1)
endforeach()
endif()
endif()