"Run Continuously" ENTASK implies that it is running like normal ladder logic, so it does not "terminate" like an edge-triggered ENTASK.
For example, $t1Second runs continuously every 1 second. You can have ladder logic in there with an OUT coil that will NOT turn off, it's just that it only gets evaluated once every 1000ms. Continuous ENTASK can be leveraged for "normal" ladder execution, but you can tweak how frequently it runs.
So, a user task that is enabled w/ENTASK that runs continuously with 0 interval (i.e. run every PLC scan), is like a PROGRAM, so you can also have legitimate TMRs and other timing instructions. TMR would not time properly if put in $t1Second task, since its interval to run is every 1000ms, not 0ms (i.e. every scan).