I have one Obj-C class (one .h, one .m) in my project and about seven Swift files. When I use #import "Class.h" in the bridging header, it causes Xcode to lose the #import "ModuleName-Swift.h". If I don't import the Class.h header file in the bridging header, #import "ModuleName-Swift.h" works just fine.
Any ideas how to fix this?