Created
April 14, 2022 07:26
-
-
Save damithadayananda/92a246c60e37762bc89a0c0e7903415c 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
type OldInterface interface { | |
a(_int int32) | |
b(_float float32) | |
} | |
type OldInterfaceType struct { | |
} | |
func (O OldInterfaceType)a(_int int32) { | |
} | |
func (O OldInterfaceType)b(_float float32) { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment