mirror of https://github.com/tinygo-org/tinygo.git
wasmstm32webassemblymicrocontrollerarmavrspiwasiadafruitarduinocircuitplayground-expressgpioi2cllvmmicrobitnrf51nrf52nrf52840samd21tinygo
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
483 B
38 lines
483 B
package main
|
|
|
|
type x struct{}
|
|
|
|
func (x x) name() string {
|
|
return "x"
|
|
}
|
|
|
|
type y = x
|
|
|
|
type a struct {
|
|
n int
|
|
}
|
|
|
|
func (a a) fruit() string {
|
|
return "apple"
|
|
}
|
|
|
|
type b = a
|
|
|
|
type fruit interface {
|
|
fruit() string
|
|
}
|
|
|
|
type f = fruit
|
|
|
|
func main() {
|
|
// test a basic alias
|
|
println(y{}.name())
|
|
|
|
// test using a type alias value as an interface
|
|
var v f = b{}
|
|
println(v.fruit())
|
|
|
|
// test comparing an alias interface with the referred-to type
|
|
println(a{} == b{})
|
|
println(a{2} == b{3})
|
|
}
|
|
|