Closed
Description
In http://doc.rust-lang.org/doc/tutorial.html: "
resource file_desc(fd: int) {
close_file_desc(fd);
}
This defines a type file_desc and a constructor of the same name, which takes an integer."
Shouldn't this define a destructor by the same name?