(EDITIED) It looks like the fallthrough here has nothing to do with guard/else here. fallthrough is used to jump to the next case block, and since it jumps out of the current context, guard/else accepts it (just like return in a func).
Late to this discussion, but I hope this helps someone:
I wound up on this year-old thread by searching the web for: “swift switch guard fallthrough”. Like most other information on the web (and like Apple’s documentation?) there’s very little in depth and exhaustive, just minimalist, for-beginners, simplest use cases only. (At least Apple’s pages aren't endless similar AI regurgitations, yet)
I was wondering the same thing as @RoBo-Inc. In my situation in a switch statement over the results of an alert’s runModal(), a case for the first button and a default for cancel. I wanted to verify that I could use guard / fallthrough in an error condition in the first case, it's something I'd never had the occasion to do before.
I don’t think “fallthrough here has nothing to do with guard/else here” is a helpful answer. The original question with respect to the two constructs is a valid one, if fallthrough was okay to use as control flow in the else clause of a guard for exiting the current scope, like break or return, etc.
And although it doesn't seem to be terribly explicit in the documentation or covered in many examples or discussions online, yes it's indeed okay to use fallthrough here, and that it does what you expect.