1function(foo)
2  foreach(i RANGE 1 3)
3    foreach(j RANGE 1 3)
4      return()
5      message(FATAL_ERROR "unexpected")
6    endforeach()
7  endforeach()
8endfunction(foo)
9
10foo()
11