Created
June 22, 2020 16:07
-
-
Save tylerstillwater/c0ce3756a71cc3c950223652e8a87212 to your computer and use it in GitHub Desktop.
Comma inserted when autocompleting
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
type child struct { | |
name string | |
} | |
type parent struct { | |
childName string | |
} | |
func main() { | |
susie := child{name: "susie"} | |
_ = parent{ | |
childName: // autocomplete susie.name here, | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment