Resolving "import object is expected Error" in Golang 1.4.2
In the transition from Golang 1.3 to 1.4.2, you may encounter an "import object is expected" error when compiling. This error is caused by a change in the import handling mechanisms between different versions of Golang.
To resolve this issue, you will need to remove the old pkg files in your GOPATH directory. This will force Golang to rebuild the package files for the updated version.
Open your terminal and navigate to your GOPATH directory. Then, execute the following command:
This command will delete the old pkg files. After executing it, try compiling your code again. The error should be resolved, and your code will compile successfully.
The above is the detailed content of How do I resolve the \'import object is expected\' error in Golang 1.4.2?. For more information, please follow other related articles on the PHP Chinese website!