// 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)
)