summaryrefslogtreecommitdiff
path: root/src/pkg/go/types/testdata/conversions.src
blob: 1b1518366f34d09ce6a90f8093ba21c05923aa29 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2012 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

// conversions

package conversions

// argument count
var (
	_v0 = int /* ERROR "one argument" */ ()
	_v1 = int /* ERROR "one argument" */ (1, 2)
)

//
var (
	_v2 = int8(0)
)