Xcode 13 autocompletion bugs that adds import wrong framework..

One of feature in Xcode 13 is that adding ‘import SomeFramework’ when you typed the method or parameter of ‘SomeFramework’. But I found that it can makes circular dependency compile error when I use autocompletion with methods in MainTarget.(or even any framework has ‘SomeFramework’ dependency)

ex) Circular dependency error: circular dependency between modules 'SomeFramework' and 'MainTarget'

MainTarget
- SomeFramework

SomeFramework
- MainTarget

** I used several project files, several frameworks in a workspace **

Xcode 13 autocompletion bugs that adds import wrong framework..
 
 
Q