Golang生成的.exe文件如何确定其图标

I have a file named 'resources.rc'.Here is some of its contents below.

left ICON ui/icon/left.ico
right ICON ui/icon/right.ico
dot-yellow.ico ICON ui/icon/dot-yellow.ico
dot-green.ico ICON ui/icon/dot-green.ico
dot-red.ico ICON ui/icon/dot-red.ico
list.ico ICON ui/icon/list.ico
map.ico ICON ui/icon/map.ico

I also have a batch handle file named build.bat.And here is some of its contents below.

windres.exe -i resources.rc -o resources.syso -O coff || exit /b %errorlevel%
go build -ldflags="-H windowsgui -s -w" -v -o "%~1\test.exe" || exit /b 1

Now I'm wondering which icon listed in 'resources.rc' is the icon of 'test.exe'.