mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-08 09:38:26 +03:00
8 lines
125 B
Rust
8 lines
125 B
Rust
// Test inherent trait impls work cross-crait.
|
|
|
|
pub trait Bar<'a> : 'a {}
|
|
|
|
impl<'a> dyn Bar<'a> {
|
|
pub fn bar(&self) {}
|
|
}
|