Skip to content

Instantly share code, notes, and snippets.

@SiegeLord
Created April 12, 2014 14:42
Show Gist options
  • Select an option

  • Save SiegeLord/10539071 to your computer and use it in GitHub Desktop.

Select an option

Save SiegeLord/10539071 to your computer and use it in GitHub Desktop.
Hmm?
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
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