1// errorcheck
2
3// Copyright 2009 The Go Authors. All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7package main
8
9type S struct {
10	a, b int
11}
12
13func main() {
14	s1 := S{a: 7};	// ok - field is named
15	s3 := S{7, 11};	// ok - all fields have values
16	s2 := S{7};	// ERROR "too few"
17	_, _, _ = s1, s3, s2;
18}
19