Sign in
cmake
/
cmake
/
39e5a4da220c1ddcd73d74d26ed55a7418add215
/
.
/
Tests
/
RunCMake
/
return
/
ReturnFromForeach.cmake
blob: c71cf33d1f025db1f1ce6d2529414a0219c1ee72 [
file
] [
log
] [
blame
]
function
(
foo
)
foreach
(
i RANGE
1
3
)
foreach
(
j RANGE
1
3
)
return
()
message
(
FATAL_ERROR
"unexpected"
)
endforeach
()
endforeach
()
endfunction
(
foo
)
foo
()