Home | History | Annotate | Download | only in fixedbugs
      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 
      9 package main
     10 
     11 import "reflect"
     12 
     13 var T struct {
     14 	int
     15 }
     16 
     17 func 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