Text file src/go/types/testdata/check/go1_8.src
1 // Copyright 2021 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 5 // Check Go language version-specific errors. 6 7 package go1_8 // go1.8 8 9 // type alias declarations 10 type any = /* ERROR type aliases requires go1.9 or later */ interface{} 11 12