mirror of
https://github.com/golang/go
synced 2024-11-13 17:30:24 -07:00
10 lines
67 B
Go
10 lines
67 B
Go
|
package p
|
||
|
|
||
|
type T struct {
|
||
|
X, Y int
|
||
|
}
|
||
|
|
||
|
type I interface {
|
||
|
M(T)
|
||
|
}
|