Skip to content

Instantly share code, notes, and snippets.

@lukemurray
Created July 25, 2014 06:19
Show Gist options
  • Save lukemurray/2747b07a1396986f20a0 to your computer and use it in GitHub Desktop.
Save lukemurray/2747b07a1396986f20a0 to your computer and use it in GitHub Desktop.
pub trait Queryable { }
// re-export
pub use common::{Queryable};
mod common;
// use Queryable in here
extern crate mylib; // compiled from /src/*
mod test_common;
use mylib::{Queryable}; // fails here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment