Daniel Morsing | a45777f | 2012-10-07 06:53:57 +0200 | [diff] [blame] | 1 | // run |
| 2 | |
Emmanuel Odeke | 53fd522 | 2016-04-10 14:32:26 -0700 | [diff] [blame] | 3 | // Copyright 2012 The Go Authors. All rights reserved. |
Daniel Morsing | a45777f | 2012-10-07 06:53:57 +0200 | [diff] [blame] | 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 | } |