mirror of
https://github.com/golang/go
synced 2024-11-05 14:56:10 -07:00
9 lines
74 B
Go
9 lines
74 B
Go
|
package main
|
||
|
|
||
|
import "a"
|
||
|
|
||
|
func main() {
|
||
|
f := new(a.Future)
|
||
|
f.Result()
|
||
|
}
|