1// run
2
3// Copyright 2012 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
7// part two of issue 4124. Make sure reflect doesn't mark the field as exported.
8
9package main
10
11import "reflect"
12
13var T struct {
14	int
15}
16
17func main() {
18	v := reflect.ValueOf(&T)
19	v = v.Elem().Field(0)
20	if v.CanSet() {
21		panic("int should be unexported")
22	}
23}
24