Created
April 12, 2014 14:42
-
-
Save SiegeLord/10539071 to your computer and use it in GitHub Desktop.
Hmm?
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
| test.rs:4:6: 4:30 error: unresolved import: there is no `BenchHarness` in `test::test` | |
| test.rs:4 use self::test::BenchHarness; | |
| ^~~~~~~~~~~~~~~~~~~~~~~~ | |
| test.rs:4:6: 4:30 error: failed to resolve import `self::test::BenchHarness` | |
| test.rs:4 use self::test::BenchHarness; | |
| ^~~~~~~~~~~~~~~~~~~~~~~~ | |
| error: aborting due to 2 previous errors |
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
| mod test | |
| { | |
| extern crate test; | |
| use self::test::BenchHarness; | |
| } | |
| fn main() | |
| { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment