Sign in
go
/
website
/
2c2263031c4b04df90e07063c8997bd2f9226f9f
/
.
/
_content
/
talks
/
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{})
}