No chance of them (or Android) adopting Go when it has its own completely nonstandard ABI that doesn't interoperate with anything else on the platform. You can't even produce libraries with Go; it has to own the entire process. Its stacks are different from anything else so no system debugging/profiling tools work with them, and calling into native code requires stack-munging at the call site which adds significant overhead.
I'm aware that there are good reasons for Go doing what it does, primarily to make goroutine stacks memory-efficient. But it makes Go really difficult to integrate with a platform's high-level APIs. It's best suited for standalone processes that use mostly system calls, things like servers.
--Jens
(As for people thinking Swift's syntax derives from Go; it may to some degree, but I also see at least as much influence from Rust and Haskell and Scala and Pascal and lots of other languages.)