This looks like an import conflict. In 6.7, we added a `vector-sort!` function to `racket/vector`. There was already one in `rnrs/sorting-6`. So if your program requires both libraries, you will have a conflict.
You can resolve the conflict by looking for places where you require `rnrs/sorting-6`, and either adding an `except-in` form to your `require`, to avoid requiring `vector-sort!`, or maybe even skip using that library altogether. Sorry for the trouble. Vincent On Thu, 27 Oct 2016 09:31:00 -0500, Some Dude wrote: > > Great news, especially the integrated Android support. > > However, I get this for one of my programs: > > module: identifier already imported from a different source in: > vector-sort! > rnrs/sorting-6 > racket/gui > > But what's worse, it doesn't show where the bug occurs, even though debugging > is switched on in the language. (The program uses racket/gui). > > Is there a fix for this? Is this a known problem? -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to racket-users+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.