Closed
Description
If you do the following using rustc 0.8-pre (6bc48b6 2013-09-16 09:00:44 -0700)
git clone https://github.com/jesseray/rust-http
cd ./rust-http
make
then you will see the following (amid some other stuff):
src/libhttp/client/request.rs:77:8: 101:9 warning: debuginfo: Could not find namespace node for function
with name url_to_socket_addr. This is a bug! Please report this to
github.com/mozilla/rust/issues
src/libhttp/client/request.rs:77 fn url_to_socket_addr(url: &Url) -> SocketAddr {
src/libhttp/client/request.rs:78 // Just grab the first IPv4 address
src/libhttp/client/request.rs:79 let addrs = get_host_addresses(url.host);
src/libhttp/client/request.rs:80 // TODO: Error handling
src/libhttp/client/request.rs:81 let addrs = addrs.unwrap();
src/libhttp/client/request.rs:82 let addr = do addrs.move_iter().find |&a| {
...