From 349027cde24c9539cdd07abcb36f5d906cfb873d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Mart=C3=AD?= Date: Fri, 29 May 2020 15:28:24 +0100 Subject: [PATCH] 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. --- testdata/scripts/imports.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/testdata/scripts/imports.txt b/testdata/scripts/imports.txt index b51d959..63b800c 100644 --- a/testdata/scripts/imports.txt +++ b/testdata/scripts/imports.txt @@ -23,6 +23,7 @@ package main import ( "fmt" + "reflect" _ "unsafe" "test/main/imported"