This program:
#lang racket
(require net/url)
(url->path (make-url #f #f #f #f #f '() '() #f))
raises an error because build-path is called with zero arguments. Probably it should not do that, although I'm not sure what the correct behavior should be.
This program:
raises an error because
build-pathis called with zero arguments. Probably it should not do that, although I'm not sure what the correct behavior should be.