You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following runs forever(*) without producing any output:
package main
import"github.com/davecgh/go-spew/spew"funcmain() {
typeloop*loopvarloop1, loop2looploop1=&loop2loop2=&loop1spew.Dump(&loop1)
}
(*) It does not hit the stack size limit; its memory usage does keep growing so obviously it will eventually run out of swap or virtual address space...
The text was updated successfully, but these errors were encountered:
I was going to say there was no interface values involved here, but of course the param to Dump is itself of interface type. So yes: entirely possible that this is related.
The following runs forever(*) without producing any output:
(*) It does not hit the stack size limit; its memory usage does keep growing so obviously it will eventually run out of swap or virtual address space...
The text was updated successfully, but these errors were encountered: