blob: 9e93c99436c3d71859fcd35df74f75135cc18b2e [file] [log] [blame]
// +build go1.9
package main
import (
"fmt"
"net/http"
)
type Applicant = http.Client
func main() {
fmt.Printf("%T", Applicant{})
}