You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A proto file imported from another proto file using import public ... will have its exported types aliased in the generated Go code, and vars copied. Currently the Go code generator doesn’t check to see if the imported symbols clobber existing symbols in the importing package.
Ensure symbols imported using import public are renamed when aliased or copied into the destination package.
Consider an option to rename the symbol in an importing package.
The text was updated successfully, but these errors were encountered:
A proto file imported from another proto file using
import public ...
will have its exported types aliased in the generated Go code, and vars copied. Currently the Go code generator doesn’t check to see if the imported symbols clobber existing symbols in the importing package.import public
are renamed when aliased or copied into the destination package.The text was updated successfully, but these errors were encountered: