aboutsummaryrefslogtreecommitdiff
path: root/test/fixedbugs/issue31546.go
blob: a459d4d124494055f97632ce5e777e7af8a5e016 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// run

// Copyright 2019 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.

package main

import (
	"reflect"
)

var x = struct{ a, _, c int }{1, 2, 3}

func main() {
	if i := reflect.ValueOf(x).Field(1).Int(); i != 0 {
		println("got", i, "want", 0)
		panic("fail")
	}
}