Created
January 3, 2016 03:10
-
-
Save btipling/54ad3ab4a5b6352bb2a3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Compiling korasho v0.1.0 (file:///Users/bjorn/projects/korasho) | |
src/connect.rs:32:45: 32:78 error: use of undeclared type name `std::Result` [E0412] | |
src/connect.rs:32 pub fn connect(server: ::config::Server) -> ::std::Result<Connection, String> { | |
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ | |
src/connect.rs:32:45: 32:78 help: run `rustc --explain E0412` to see a detailed explanation | |
error: aborting due to previous error | |
Could not compile `korasho`. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
use std::io::{Result}; | |
use std::result; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment