blacklist struct fields with reflection too

In the added test, the unexported field used to be garbled.

Reflection can only reach exported methods, exported fields, and
unexported fields. Exported methods and fields are currently never
garbled, so unexported fields was the only missing piece.
pull/25/head
Daniel Martí 5 years ago committed by lu4p
parent 2297a8ac92
commit 349027cde2

@ -23,6 +23,7 @@ package main
import (
"fmt"
"reflect"
_ "unsafe"
"test/main/imported"

Loading…
Cancel
Save