The `<(...)` statement in bash is process substitution. The process in `<(...)` is run with its input or output connected to a FIFO or some file in `/dev/fd`. See it with:
echo <(echo foo)
It prints something like `/dev/fd/63`. That is the file descritor. The `<(...)` part is then replaced with that file descriptor. So in your statement the call would be for example:
./int.sh <( cat ./int.sh )
Is replaced with:
./int.sh /dev/fd/63
So, it's just an argument to the script `./int.sh`, that is still called interactively.