CMake/Tests/RunCMake/foreach/BadRangeInFunction.cmake
Brad King fb114a40aa Tests: Add test for bad foreach inside a function
Add test for a case fixed by commit 6a4a61d9e1 (cmForEachCommand:
prevent leakage, 2017-10-09).  Prior to that fix, this test case
could trigger an assertion failure.

Fixes: #17464
2017-11-16 11:10:05 -05:00

6 lines
84 B
CMake

function(func)
foreach(bad_range RANGE 2 1 1)
endforeach()
endfunction()
func()