about summary refs log tree commit diff
path: root/tests/run-make/crate-loading-crate-depends-on-itself/foo-prev.rs
blob: 19d3f3c972b09e6aacd3075c134c99c9aa58f4f8 (plain)
1
2
3
4
5
6
#![crate_type = "lib"]
#![crate_name = "foo"]

pub struct Struct;
pub trait Trait {}
impl Trait for Struct {}