blob: 2d35163382916ad6f6910834a749dd2eb218c188 [file] [log] [blame]
#![crate_name = "dependency"]
#![crate_type = "rlib"]
pub struct Type;
pub trait Trait {}
impl Trait for Type {}
pub fn do_something<X: Trait>(_: X) {}