“no such module” on Xcode 7 beta 2
I saw this question , but I am still unable to import a framework and use it inside Xcode 7 beta 2 (7A121l). So currently I am trying to use Result , via carthage. After adding it to Build Phases/ Link Binary with Binaries and Embed Frameworks I am able to compile successfully, but I get an error stating (yes it says success and then error :S): No such module 'Result' On the import: import Result func serverRequest() -> Result<String, NSError> { ... } The build is able to Run and Compile, but I am not able to cmd+click on Result, for example. Edit 1: On Xcode 6.3.2 it works as expected. Edit 2