Created
June 24, 2020 18:34
-
-
Save tylerstillwater/153b5caa1d4d0a4b30cbcdcdfd690ded to your computer and use it in GitHub Desktop.
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 thisDoesNotWork struct { | |
i int | |
} | |
func main() { | |
var j int64 | |
thisWorks(j) // quick fix convert works here | |
_ = thisDoesNotWork{ | |
i: j, // quick fix convert is not available here | |
} | |
} | |
func thisWorks(i int) {} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment