Ticket #1379 (new feature request)
Allow breakpoints and single-stepping for functions defined interactively
| Reported by: | Michael D. Adams | Owned by: | |
|---|---|---|---|
| Priority: | lowest | Milestone: | 7.6.2 |
| Component: | GHCi | Version: | 6.7 |
| Keywords: | Cc: | ||
| Operating System: | Linux | Architecture: | x86 |
| Type of failure: | None/Unknown | Difficulty: | Unknown |
| Test Case: | Blocked By: | ||
| Blocking: | Related Tickets: |
Description
Steps to reproduce (from ghc-HEAD sources for 25 May 2007):
Prelude> let fib n = if n < 2 then 1 else fib (n-1) + fib (n-2)
Prelude> let main = print $ fib 30
Prelude> :break fib
ghc-6.7.20070515: panic! (the 'impossible' happened)
(GHC version 6.7.20070515 for i386-unknown-linux):
nameModule fib{v apa}
Please report this as a GHC bug: http://www.haskell.org/ghc/reportabug
Prelude>
Change History
Note: See
TracTickets for help on using
tickets.
