Sign in
go
/
talks
/
a07c284bcf333dc17a1489fd441e8fccf1e01c2a
/
.
/
content
/
2017
/
state-of-go-may
/
alias
/
main.go
blob: 9e93c99436c3d71859fcd35df74f75135cc18b2e [
file
] [
log
] [
blame
]
// +build go1.9
package main
import (
"fmt"
"net/http"
)
type Applicant = http.Client
func main() {
fmt.Printf("%T", Applicant{})
}