On Mon Jan 26 02:42:39 2009, masak wrote: > This now works in r35994: > > $ perl6 -e 'say "mm, pie" ~~ A' > Could not find non-existent sub A > [...] > > Not sure if I can resolve the ticket though, since things are still not > checked before runtime: > > $ perl6 -e 'say "OH HAI"; say "mm, pie" ~~ A' > OH HAI > Could not find non-existent sub A > [...]
Since A could well be a post-declared listop, maybe we can warn about A being an undefined routine, but I think that is the most we can do at compile time (so it's a warning not an error). Thoughts? Jonathan