blob: 6d9101735d1c9b8e3301dc0ceb82be6010ad80aa [file] [log] [blame]
Alan Donovan6e7ee5a2017-02-09 14:54:08 -05001// Copyright 2017 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
Russ Cox23633912021-02-19 17:25:34 -05005//go:build !go1.9
Alan Donovan6e7ee5a2017-02-09 14:54:08 -05006// +build !go1.9
7
8package main
9
10import "go/types"
11
12func isAlias(obj *types.TypeName) bool {
13 return false // there are no type aliases before Go 1.9
14}
15
16const HasAlias = false