Merge branch 'mod-attrs' into deref-impl

This commit is contained in:
Tim Kuehn
2016-01-24 16:58:26 -08:00

View File

@@ -375,6 +375,9 @@ mod test {
mod baz {
items {
use std::collections::HashMap;
#[derive(Debug)]
pub struct Debuggable;
}
service {
@@ -384,4 +387,9 @@ mod test {
}
}
}
#[test]
fn debug() {
println!("{:?}", baz::Debuggable);
}
}