mirror of
https://github.com/go-delve/delve.git
synced 2025-11-02 21:40:22 +08:00
686 B
686 B
Known Bugs
- When a function defines two (or more) variables with the same name delve is unable to distinguish between them:
localswill print both variables,printwill randomly pick one. See Issue #106. - Delve does not currently support 32bit systems. This will usually manifest as a compiler error in
proc/disasm.go. See Issue #20. - When Delve is compiled with versions of go prior to 1.7.0 it is not possible to set a breakpoint on a function in a remote package using the
Receiver.MethodNamesyntax. See Issue #528.