CURRENT PATH:
/
opt
/
golang
/
1.22.0
/
src
/
cmd
/
link
/
internal
/
ld
/
testdata
/
issue25459
/
a
/
KEMBALI
|
HOME
Upload File Local:
Upload
Upload via URL:
Download
Dir Baru
File Baru
Editing:
a.go
package a const Always = true var Count int type FuncReturningInt func() int var PointerToConstIf FuncReturningInt func ConstIf() int { if Always { return 1 } var imdead [4]int imdead[Count] = 1 return imdead[0] } func CallConstIf() int { Count += 3 return ConstIf() } func Another() { defer func() { PointerToConstIf = ConstIf; Count += 1 }() }
SIMPAN
BATAL