rustc/tests/run-make/crate-loading-crate-depends-on-itself/foo-prev.rs
2025-01-11 15:57:26 +01:00

7 lines
110 B
Rust

#![crate_type = "lib"]
#![crate_name = "foo"]
pub struct Struct;
pub trait Trait {}
impl Trait for Struct {}